From dcf28c7a52be1175296b0cd2852664e061438c30 Mon Sep 17 00:00:00 2001 From: Laura Escamilla Date: Tue, 6 Feb 2024 16:28:41 +0000 Subject: [PATCH] Bug 36005: Fixed typo in "Your concern was successfully submitted." text To test: 1. Turn on the syspref 'CatalogConcerns' 2. Go to view a record in the staff intranet and click on "New catalog concern" which is located in the "+New" dropdown. 3. Fill out the title on the form and leave everything else the same. Click on submit and notice that the message on the screen says "Your concern was sucessfully submitted." 4. Apply the patch. 5. Refresh the page and submit a new concern. Notice that the message now has "successfully" spelled correctly. 6. Sign off and have a wonderful day! :D --- koha-tmpl/intranet-tmpl/prog/js/modals/add_catalog_concern.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/modals/add_catalog_concern.js b/koha-tmpl/intranet-tmpl/prog/js/modals/add_catalog_concern.js index 3c48f67afb..10c0b3b2e9 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/modals/add_catalog_concern.js +++ b/koha-tmpl/intranet-tmpl/prog/js/modals/add_catalog_concern.js @@ -35,7 +35,7 @@ $(document).ready(function() { $('#addConcernModal').modal('hide'); $('#concern_body').val(''); $('#concern_title').val(''); - $('#toolbar').before('
' + __("Your concern was sucessfully submitted.") + '
'); + $('#toolbar').before('
' + __("Your concern was successfully submitted.") + '
'); if ($.fn.dataTable.isDataTable("#table_concerns")) { $("#table_concerns").DataTable().ajax.reload(); } -- 2.30.2