remove execution time formatter from non-execution-time bits

This commit is contained in:
emma 2023-11-13 19:31:45 -05:00
parent ee8ecb20de
commit d7dc71ae99

View File

@ -401,7 +401,7 @@ export class Dashboard extends LiteElement {
<div class="text-center"> <div class="text-center">
<div>${label}</div> <div>${label}</div>
<div class="text-xs opacity-80"> <div class="text-xs opacity-80">
${this.humanizeExecutionSeconds(value)} | ${humanizeDuration(value * 1000)} |
${this.renderPercentage(value / quotaSeconds)} ${this.renderPercentage(value / quotaSeconds)}
</div> </div>
</div> </div>
@ -590,7 +590,7 @@ export class Dashboard extends LiteElement {
</sl-format-date> </sl-format-date>
`, `,
value ? this.humanizeExecutionSeconds(value) : "--", value ? this.humanizeExecutionSeconds(value) : "--",
this.humanizeExecutionSeconds(crawlTime || 0), humanizeDuration(crawlTime * 1000 || 0),
]; ];
}); });
return html` return html`