Skip to content

Commit 3b44df5

Browse files
authored
Merge pull request #69 from Shlpeng/patch-4
Update index.fes
2 parents 4478d3c + 263fd67 commit 3b44df5

File tree

1 file changed

+5
-1
lines changed
  • ui/src/pages/myProject/projects/list

1 file changed

+5
-1
lines changed

ui/src/pages/myProject/projects/list/index.fes

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,11 @@
844844
})
845845
},
846846
taskExecution() {
847-
const arr = this.$refs.tableRule.map((item)=> {
847+
if(this.$refs.tableRule){
848+
}else{
849+
this.$Toast.error('No rule can be executed')
850+
}
851+
let arr = this.$refs.tableRule.map((item)=> {
848852
return item.getSelected();
849853
});
850854
this.selectTask = arr.reduce((i, j)=> {

0 commit comments

Comments
 (0)