Skip to content

Commit

Permalink
Merge pull request #69 from Shlpeng/patch-4
Browse files Browse the repository at this point in the history
Update index.fes
  • Loading branch information
Tangjiafeng authored Mar 16, 2022
2 parents 7df2c85 + 2825ccb commit 554b09c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ui/src/pages/myProject/projects/list/index.fes
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,11 @@
})
},
taskExecution() {
const arr = this.$refs.tableRule.map((item)=> {
if(this.$refs.tableRule){
}else{
this.$Toast.error('No rule can be executed')
}
let arr = this.$refs.tableRule.map((item)=> {
return item.getSelected();
});
this.selectTask = arr.reduce((i, j)=> {
Expand Down

0 comments on commit 554b09c

Please sign in to comment.