diff --git a/frontend/src/features/archived-items/crawl-list.ts b/frontend/src/features/archived-items/crawl-list.ts index da5fe70f..b162fa51 100644 --- a/frontend/src/features/archived-items/crawl-list.ts +++ b/frontend/src/features/archived-items/crawl-list.ts @@ -131,6 +131,7 @@ export class CrawlListItem extends BtrixElement { (crawl: Crawl) => html` { - if (!this.lastCrawlId) { + if (!this.lastCrawlId || this.isUnsuccessfullyFinished) { return this.renderInactiveCrawlMessage(); } @@ -1832,7 +1839,7 @@ export class WorkflowDetail extends BtrixElement { if (this.workflow.lastCrawlState === "canceled") { message = msg("This crawl can’t be replayed since it was canceled."); } else { - message = msg("Replay is not enabled on this crawl."); + message = msg("Replay is not available for this crawl."); } }