Skip to content

Commit

Permalink
fix: 修复触发器编辑时请求参数不正确问题 --story=119955080
Browse files Browse the repository at this point in the history
  • Loading branch information
luofann committed Oct 8, 2024
1 parent e74be9a commit 968a029
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -784,8 +784,7 @@
// 创建多个触发器规则(响应条件)
createRespond(value) {
const params = value;
const id = this.originInfoToTrigger.id;
this.$store.dispatch('trigger/createRespond', { id, params }).then((res) => {
this.$store.dispatch('trigger/createRespond', { id: this.triggerInfo.id, params }).then((res) => {
this.backInfo.responseList = res.data;
// 触发条件
this.createTriggerCondition();
Expand Down

0 comments on commit 968a029

Please sign in to comment.