From a8b2a71f751b984fc7edc5d156e0acc0b393289f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 12 Aug 2022 15:17:45 +0200 Subject: [PATCH] Bug 31343: (bug 31138 follow-up) Don't hide error Some errors are not passing settings and so the error is hidden --- koha-tmpl/intranet-tmpl/prog/js/datatables.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/datatables.js b/koha-tmpl/intranet-tmpl/prog/js/datatables.js index 9f62aa2270b..e97f6fa3d34 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/datatables.js +++ b/koha-tmpl/intranet-tmpl/prog/js/datatables.js @@ -485,7 +485,7 @@ function filterDataTable( table, column, term ){ } jQuery.fn.dataTable.ext.errMode = function(settings, note, message) { - if ( settings.jqXHR ) { + if ( settings && settings.jqXHR ) { console.log("Got %s (%s)".format(settings.jqXHR.status, settings.jqXHR.statusText)); alert(__("Something went wrong when loading the table.\n%s: %s").format(settings.jqXHR.status, settings.jqXHR.statusText)); } else { -- 2.25.1