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 1da7d31 [fixBug-3621][ui]If the workflow instance status is executing
status, it is forbidden to select
new 621f10f Merge pull request #3762 from break60/1.3.3-release
1da7d31 is described below
commit 1da7d319245333ab0b60a2a7e7d2d3c4480bd862
Author: break60 <[email protected]>
AuthorDate: Thu Sep 17 14:32:22 2020 +0800
[fixBug-3621][ui]If the workflow instance status is executing status, it is
forbidden to select
---
.../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 005858d..3757588 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"
@on-change="_arrDelChange"></x-checkbox></td>
+ <td width="50"><x-checkbox v-model="item.isCheck"
:disabled="item.state === 'RUNNING_EXEUTION'"
@on-change="_arrDelChange"></x-checkbox></td>
<td width="50">
<span>{{parseInt(pageNo === 1 ? ($index + 1) : (($index + 1) +
(pageSize * (pageNo - 1))))}}</span>
</td>