From 1f9710edd94c7acc65da135a929334ccb77769ea Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Fri, 17 May 2024 13:48:28 +0000 Subject: [PATCH] Bug 36895: Fix background job link This patch fixes the missing job id in the links from the import KBART file page Test plan: 1) Import a KBART file to get the message at the top of the screen. 2) The message should include a link on the text "see progress" 3) Click the link, it should just take you to the background jobs page 4) Apply patch 5) yarn build 6) Hard refresh the browser 7) Repeat steps 1-3 8) It should correctly take you to the background job Signed-off-by: David Nind --- .../vue/components/ERM/EHoldingsLocalTitlesKBARTImport.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesKBARTImport.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesKBARTImport.vue index 22b275da86..5049bf9cb0 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesKBARTImport.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesKBARTImport.vue @@ -149,9 +149,8 @@ export default { message += `
  • ${this.$__( "Job %s for uploaded file has been queued" ).format( - i + 1, - job - )}, ${this.$__( + i + 1 + )}, ${this.$__( "see progress" )}
  • ` }) -- 2.39.2