From 20566cf036a8f2dd2dbc03eb330e85ccfbb624c6 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Wed, 31 Jan 2024 10:17:24 +0800 Subject: [PATCH] * Fix bug #45639. --- module/execution/js/task.ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/js/task.ui.js b/module/execution/js/task.ui.js index 9c112ea6cf..42564a7a8d 100644 --- a/module/execution/js/task.ui.js +++ b/module/execution/js/task.ui.js @@ -36,7 +36,7 @@ $(document).off('click','.batch-btn').on('click', '.batch-btn', function() */ window.setStatistics = function(element, checkedIDList) { - if(typeof element != 'undefined') return; + if(typeof element == 'undefined') return; let totalLeft = 0; let totalEstimate = 0;