Hide file size when crawl is running (#648)
This commit is contained in:
parent
85416e2ca2
commit
91e415fac2
@ -303,8 +303,10 @@ export class CrawlListItem extends LitElement {
|
|||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<div class="detail">
|
<div class="detail">
|
||||||
${this.safeRender(
|
${this.safeRender((crawl) =>
|
||||||
(crawl) => html`<sl-format-bytes
|
isActive
|
||||||
|
? html`<span class="unknownValue">${msg("In Progress")}</span>`
|
||||||
|
: html`<sl-format-bytes
|
||||||
value=${crawl.fileSize || 0}
|
value=${crawl.fileSize || 0}
|
||||||
></sl-format-bytes>`
|
></sl-format-bytes>`
|
||||||
)}
|
)}
|
||||||
|
Loading…
Reference in New Issue
Block a user