diff --git a/frontend/src/pages/org/crawl-detail.ts b/frontend/src/pages/org/crawl-detail.ts index 8632ca0e..ef599dcd 100644 --- a/frontend/src/pages/org/crawl-detail.ts +++ b/frontend/src/pages/org/crawl-detail.ts @@ -627,7 +627,7 @@ export class CrawlDetail extends LiteElement { >` : html`${msg("Pending")}`} - + ${this.crawl!.finished ? html`${RelativeDuration.humanize( new Date(`${this.crawl!.finished}Z`).valueOf() - diff --git a/frontend/src/pages/org/dashboard.ts b/frontend/src/pages/org/dashboard.ts index 75a4030f..8bbbbefe 100644 --- a/frontend/src/pages/org/dashboard.ts +++ b/frontend/src/pages/org/dashboard.ts @@ -528,10 +528,10 @@ export class Dashboard extends LiteElement { `, html` - ${msg("Total Crawl Duration")} + ${msg("Elapsed Time")}
- ${msg("Total time elapsed between when crawl starts and ends")} + ${msg("Total time elapsed between when crawls started and ended")}
@@ -560,15 +560,15 @@ export class Dashboard extends LiteElement { ]; }); return html` -

- ${msg("Usage History")} -

-
- -
+ + ${msg("Usage History")} +
+ +
+
`; }