From 9682d45a34e19def3f4a040ea663571ef1ccbc83 Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Tue, 3 Sep 2019 13:45:21 +0100 Subject: [PATCH] Bug 23529: (follow-up) Fix syntax error As mentioned in comment #3 --- koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js b/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js index 0c97ecea6d..25b0562e40 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js +++ b/koha-tmpl/intranet-tmpl/prog/js/ill-list-table.js @@ -363,7 +363,7 @@ $(document).ready(function() { // it to datatables var filterParam = prefilters ? '&' + prefilters : ''; // Only fire the request if we're on the ILL list page - if (window.location.search.length == 0) {} + if (window.location.search.length == 0) { var ajax = $.ajax( '/api/v1/illrequests?embed=metadata,patron,capabilities,library,status_alias,comments,requested_partners' + filterParam -- 2.11.0