This is an automated email from the ASF dual-hosted git repository. humbedooh pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
commit d078a57a8be3d9b950d4b6b8ad65e84398f75ef9 Author: Daniel Gruno <[email protected]> AuthorDate: Sat Nov 13 17:43:17 2021 +0100 refactor call --- webui/js/source/listview-header.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/js/source/listview-header.js b/webui/js/source/listview-header.js index 7099173..bc644fe 100644 --- a/webui/js/source/listview-header.js +++ b/webui/js/source/listview-header.js @@ -20,7 +20,7 @@ let current_index_pos = 0; let current_per_page = 0; function listview_header(state, json) { - if (json.isEmpty()) { // Bad search request? + if (isEmpty(json)) { // Bad search request? modal("Bad search request", "Your request could not be parsed.", "warning"); return; }
