Bugzilla – Attachment 172848 Details for
Bug 38190
JS error on suggestion page
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38190: Remove JS error on suggestion page
Bug-38190-Remove-JS-error-on-suggestion-page.patch (text/plain), 1.59 KB, created by
David Nind
on 2024-10-17 09:44:33 UTC
(
hide
)
Description:
Bug 38190: Remove JS error on suggestion page
Filename:
MIME Type:
Creator:
David Nind
Created:
2024-10-17 09:44:33 UTC
Size:
1.59 KB
patch
obsolete
>From eab75ed99a97d855690b2d64b42ff59c5d43f2d3 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 17 Oct 2024 11:11:26 +0200 >Subject: [PATCH] Bug 38190: Remove JS error on suggestion page > >This code could appear several time as we include it in modals > >Test plan: >Go on http://localhost:8081/cgi-bin/koha/suggestion/suggestion.pl >Open the console >Notice that without this patch you see a JS error > Uncaught SyntaxError: redeclaration of const av_bsort1 >With this patch applied the error is gone. > >Signed-off-by: David Nind <david@davidnind.com> >--- > koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc >index d1aeee7d7c..d0ebd990c9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc >@@ -260,7 +260,7 @@ > }, {}); > > >- const av_bsort1= [% To.json(av_bsort1) | $raw %].map( e => { >+ var av_bsort1= [% To.json(av_bsort1) | $raw %].map( e => { > e['_id'] = e.authorised_value; > e['_str'] = e.lib; > return e; >@@ -269,7 +269,7 @@ > map[e._id] = e; > return map; > }, {}); >- const av_bsort2= [% To.json(av_bsort2) | $raw %].map( e => { >+ var av_bsort2= [% To.json(av_bsort2) | $raw %].map( e => { > e['_id'] = e.authorised_value; > e['_str'] = e.lib; > return e; >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38190
:
172846
|
172848
|
172925