From d7dc71ae99e884d384baa22a8bba3c32a83e9b68 Mon Sep 17 00:00:00 2001 From: emma Date: Mon, 13 Nov 2023 19:31:45 -0500 Subject: [PATCH] remove execution time formatter from non-execution-time bits --- frontend/src/pages/org/dashboard.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/org/dashboard.ts b/frontend/src/pages/org/dashboard.ts index 7742c330..99ffcb05 100644 --- a/frontend/src/pages/org/dashboard.ts +++ b/frontend/src/pages/org/dashboard.ts @@ -401,7 +401,7 @@ export class Dashboard extends LiteElement {
${label}
- ${this.humanizeExecutionSeconds(value)} | + ${humanizeDuration(value * 1000)} | ${this.renderPercentage(value / quotaSeconds)}
@@ -590,7 +590,7 @@ export class Dashboard extends LiteElement { `, value ? this.humanizeExecutionSeconds(value) : "--", - this.humanizeExecutionSeconds(crawlTime || 0), + humanizeDuration(crawlTime * 1000 || 0), ]; }); return html`