From 29ba527b74a73844212ac57262181e35b1cf8e63 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 Signed-off-by: Katrin Fischer (cherry picked from commit dc154e3dd2a4184d23d0cc8a966560bd43cb6038) Signed-off-by: Lucas Gass --- .../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.5