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/10/09 09:59:47 UTC

[incubator-dolphinscheduler] branch 1.3.3-release updated: [fixbug-3621][ui]Workflow instance ready to stop and ready to suspend state prohibits checking

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 ec2725d  [fixbug-3621][ui]Workflow instance ready to stop and ready to suspend state prohibits checking
     new 73bab11  Merge pull request #3877 from break60/1.3.3-release
ec2725d is described below

commit ec2725d77d99d92389a34ecf7918a1171a888194
Author: break60 <79...@qq.com>
AuthorDate: Fri Oct 9 17:23:04 2020 +0800

    [fixbug-3621][ui]Workflow instance ready to stop and ready to suspend state prohibits checking
---
 .../conf/home/pages/projects/pages/instance/pages/list/_source/list.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 a8ca068..bb42840 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
@@ -65,7 +65,7 @@
           </th>
         </tr>
         <tr v-for="(item, $index) in list" :key="item.id">
-          <td width="50"><x-checkbox v-model="item.isCheck" :disabled="item.state === 'RUNNING_EXEUTION'" @on-change="_arrDelChange"></x-checkbox></td>
+          <td width="50"><x-checkbox v-model="item.isCheck" :disabled="item.state === 'RUNNING_EXEUTION' || item.state === 'READY_STOP' || item.state === 'READY_PAUSE'" @on-change="_arrDelChange"></x-checkbox></td>
           <td width="50">
             <span>{{parseInt(pageNo === 1 ? ($index + 1) : (($index + 1) + (pageSize * (pageNo - 1))))}}</span>
           </td>