Skip to content

Commit 43f47ec

Browse files
fix: error dialogue not appearing after first use of checks #13357 (#13364)
Co-authored-by: Miloš Paunović <[email protected]>
1 parent ad55211 commit 43f47ec

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ui/src/components/flows/FlowRun.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,8 @@
190190
},
191191
onSubmit(formRef) {
192192
if (formRef && this.flowCanBeExecuted) {
193+
this.checks = [];
194+
this.executeClicked = false;
193195
formRef.validate((valid) => {
194196
if (!valid) {
195197
return false;
@@ -223,6 +225,7 @@
223225
nextStep: true,
224226
});
225227
}
228+
this.executeClicked = true;
226229
this.$emit("executionTrigger");
227230
});
228231
}

0 commit comments

Comments
 (0)