From 1ec0b645e1bce0939fd1f0bb9add434f20f49288 Mon Sep 17 00:00:00 2001 From: daitingting Date: Thu, 23 May 2024 06:17:07 +0000 Subject: [PATCH] * Fix bug #49681. --- module/execution/js/story.ui.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/module/execution/js/story.ui.js b/module/execution/js/story.ui.js index 2e8abcf7ae..4530646a45 100644 --- a/module/execution/js/story.ui.js +++ b/module/execution/js/story.ui.js @@ -65,7 +65,11 @@ $(document).off('click','.batch-btn').on('click', '.batch-btn', function() } else { - if(!unlinkTaskIdList) return false; + if(!unlinkTaskIdList) + { + loadCurrentPage(); + return false; + } $('#storyIdList').val(unlinkTaskIdList); }