Skip to content

Commit

Permalink
fix: 输出参数为空时校验失败问题修复 --ignore
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 27551
  • Loading branch information
ywywZhou committed Dec 24, 2024
1 parent a05a561 commit f4e4051
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,10 @@
this.reuseableVarList = [];
},
validate() {
return this.$refs.inputParamsForm.validate();
if (this.$refs.inputParamsForm) {
return this.$refs.inputParamsForm.validate();
}
return true;
},
},
};
Expand Down

0 comments on commit f4e4051

Please sign in to comment.