Bugzilla – Attachment 172925 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.65 KB, created by
Lucas Gass (lukeg)
on 2024-10-17 18:23:51 UTC
(
hide
)
Description:
Bug 38190: Remove JS error on suggestion page
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2024-10-17 18:23:51 UTC
Size:
1.65 KB
patch
obsolete
>From fd66072d1a497c3a98fc83e9dc5ca9792d655e71 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> >Signed-off-by: Lucas Gass <lucas@bywatersolutions.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 5320efe0966..a8358cadd78 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.2
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