-            ${humanizeDuration(value * 1000)} |
+            ${humanizeMilliseconds(value * 1000)} |
             ${this.renderPercentage(value / quotaSeconds)}
           
         
@@ -394,7 +424,9 @@ export class Dashboard extends LiteElement {
             hasQuota
               ? html`
                   
                     ${msg("Monthly Execution Time Available")}
                     
-                      ${humanizeDuration((quotaSeconds - usageSeconds) * 1000)}
+                      ${this.humanizeExecutionSeconds(
+                        quotaSeconds - usageSeconds
+                      )}
                       |
                       ${this.renderPercentage(
                         (quotaSeconds - usageSeconds) / quotaSeconds
@@ -433,10 +467,10 @@ export class Dashboard extends LiteElement {
                 
               
               
-                ${humanizeDuration(usageSeconds * 1000)}
+                ${this.humanizeExecutionSeconds(usageSeconds)}
               
               
-                ${humanizeDuration(quotaSeconds * 1000)}
+                ${this.humanizeExecutionSeconds(quotaSeconds)}
               
             
            
@@ -555,8 +589,8 @@ export class Dashboard extends LiteElement {
             >
             
           `,
-          value ? humanizeDuration(value * 1000) : "--",
-          humanizeDuration((crawlTime || 0) * 1000),
+          value ? this.humanizeExecutionSeconds(value) : "--",
+          humanizeMilliseconds(crawlTime * 1000 || 0),
         ];
       });
     return html`