Bug 33021: (QA follow-up) Fix QA errors
authorTomas Cohen Arazi <tomascohen@theke.io>
Mon, 27 Mar 2023 10:49:34 +0000 (12:49 +0200)
committerTomas Cohen Arazi <tomascohen@theke.io>
Mon, 27 Mar 2023 10:50:09 +0000 (12:50 +0200)
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt

index 4be5eef..cd1ebf2 100644 (file)
@@ -1962,7 +1962,7 @@ Note that permanent location is a code, and location may be an authval.
                           } else if (response.error_code === 'checked_out') {
                               const button = $('<button type="button">')
                                 .addClass('btn btn-xs')
-                                .text(__('Check in and add to bundle'))
+                                .text(__("Check in and add to bundle"))
                                 .on('click', function () {
                                     addToBundle(url, { external_id: barcode, force_checkin: true });
                                 });
@@ -1979,7 +1979,7 @@ Note that permanent location is a code, and location may be an authval.
                           } else if (response.error_code === 'reserved') {
                               const button = $('<button type="button">')
                                 .addClass('btn btn-xs')
-                                .text(__('Ignore holds and add to bundle'))
+                                .text(__("Ignore holds and add to bundle"))
                                 .on('click', function () {
                                     addToBundle(url, { external_id: barcode, ignore_holds: true });
                                 });