fix: error dialogue not appearing after first use of checks #13357 (#13364)

Co-authored-by: Miloš Paunović <paun992@hotmail.com>
This commit is contained in:
Nancy Sangani
2025-12-05 20:54:53 +05:30
committed by GitHub
parent ad5521199a
commit 43f47ec337

View File

@@ -190,6 +190,8 @@
},
onSubmit(formRef) {
if (formRef && this.flowCanBeExecuted) {
this.checks = [];
this.executeClicked = false;
formRef.validate((valid) => {
if (!valid) {
return false;
@@ -223,6 +225,7 @@
nextStep: true,
});
}
this.executeClicked = true;
this.$emit("executionTrigger");
});
}