From 432a72721854a2c2e7c1a88a171ec8ee43cb6f2c Mon Sep 17 00:00:00 2001 From: Henry Wilkinson Date: Wed, 3 Apr 2024 18:19:46 -0400 Subject: [PATCH] Frontend: Fixes the "Replay Latest Crawl" button path (#1636) - Fixes the path for the "Replay Latest Crawl" button on the watch crawl page when the crawl workflow isn't running --- frontend/src/pages/org/workflow-detail.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/org/workflow-detail.ts b/frontend/src/pages/org/workflow-detail.ts index ec90346d..c4a33dc9 100644 --- a/frontend/src/pages/org/workflow-detail.ts +++ b/frontend/src/pages/org/workflow-detail.ts @@ -1043,7 +1043,7 @@ export class WorkflowDetail extends LiteElement { class="flex h-56 min-h-max flex-col items-center justify-center rounded-lg border p-4" >

- ${msg("Crawl is not currently running.")} + ${msg("Crawl workflow is not currently running.")}

${when( @@ -1053,7 +1053,7 @@ export class WorkflowDetail extends LiteElement { class="mr-2" href=${`${this.orgBasePath}/items/crawl/${ this.workflow!.lastCrawlId - }?workflowId=${this.workflowId}#replay`} + }#replay`} variant="primary" size="small" @click=${this.navLink}