You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ch...@apache.org on 2020/09/29 07:58:32 UTC

[incubator-dolphinscheduler] branch 1.3.3-release updated: [fixBug-3621][ui]Select the batch checkbox to unfilter the instances in the executing state

This is an automated email from the ASF dual-hosted git repository.

chenxingchun pushed a commit to branch 1.3.3-release
in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git


The following commit(s) were added to refs/heads/1.3.3-release by this push:
     new b6761b0  [fixBug-3621][ui]Select the batch checkbox to unfilter the instances in the executing state
     new d946717  Merge pull request #3848 from break60/1.3.3-release
b6761b0 is described below

commit b6761b029902b24c774d3c421f0e8118b1841ea9
Author: break60 <79...@qq.com>
AuthorDate: Tue Sep 29 15:03:44 2020 +0800

    [fixBug-3621][ui]Select the batch checkbox to unfilter the instances in the executing state
---
 .../home/pages/projects/pages/instance/pages/list/_source/list.vue   | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue
index 8f5972a..a8ca068 100644
--- a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue
@@ -520,10 +520,9 @@
       _gantt (item) {
         this.$router.push({ path: `/projects/instance/gantt/${item.id}` })
       },
+
       _topCheckBoxClick (v) {
-        this.list.forEach((item, i) => {
-          this.$set(this.list[i], 'isCheck', v)
-        })
+        _.map(this.list , v => v.isCheck = v.state === 'RUNNING_EXEUTION' ? false : true)
         this._arrDelChange()
       },
       _arrDelChange (v) {