Skip to content

Commit

Permalink
fix: 批量删除流程报错信息-删除失败数点击后搜索异常问题修复
Browse files Browse the repository at this point in the history
  • Loading branch information
ywywZhou committed Dec 12, 2023
1 parent 41a8f94 commit 6f03a33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/desktop/src/pages/commonManage/CommonTplList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,7 @@
filterDeleteErrorTpls (templateIds) {
const creatorInfo = this.searchSelectValue.find(item => item.id === 'template_id')
if (creatorInfo) {
creatorInfo.values = templateIds
creatorInfo.values = [templateIds]
} else {
const form = this.searchList.find(item => item.id === 'template_id')
this.searchSelectValue.push({ ...form, values: [templateIds] })
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1274,7 +1274,7 @@
filterDeleteErrorTpls (templateIds) {
const creatorInfo = this.searchSelectValue.find(item => item.id === 'template_id')
if (creatorInfo) {
creatorInfo.values = templateIds
creatorInfo.values = [templateIds]
} else {
const form = this.searchList.find(item => item.id === 'template_id')
this.searchSelectValue.push({ ...form, values: [templateIds] })
Expand Down

0 comments on commit 6f03a33

Please sign in to comment.