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 dc8e892  Repair check box cannot be canceled
     new 76609ba  Merge pull request #3915 from break60/1.3.3-release
dc8e892 is described below

commit dc8e8926c84611e95eaef7ea7dd9ad388efdff88
Author: break60 <[email protected]>
AuthorDate: Thu Oct 15 10:35:47 2020 +0800

    Repair check box cannot be canceled
---
 .../home/pages/projects/pages/instance/pages/list/_source/list.vue    | 4 ++--
 1 file changed, 2 insertions(+), 2 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 bb42840..20d47a8 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
@@ -521,8 +521,8 @@
         this.$router.push({ path: `/projects/instance/gantt/${item.id}` })
       },
 
-      _topCheckBoxClick (v) {
-        _.map(this.list , v => v.isCheck = v.state === 'RUNNING_EXEUTION' ? 
false : true)
+      _topCheckBoxClick (is) {
+        _.map(this.list , v => v.isCheck = v.state === ('RUNNING_EXEUTION') || 
v.state === ('READY_STOP') || v.state === ('READY_PAUSE')? false : is)
         this._arrDelChange()
       },
       _arrDelChange (v) {

Reply via email to