Skip to content
Snippets Groups Projects
Commit 3dec650d authored by leandro's avatar leandro
Browse files

fix create fix type de signalement

parent 4efae2fc
No related branches found
No related tags found
1 merge request!17fix create fix type de signalement
...@@ -346,11 +346,12 @@ export default { ...@@ -346,11 +346,12 @@ export default {
}, },
checkCustomForms() { checkCustomForms() {
for (const customForm of this.$refs.customForms) { if (this.$refs.customForms)
if (customForm.checkCustomForm() === false) { for (const customForm of this.$refs.customForms) {
return false; if (customForm.checkCustomForm() === false) {
return false;
}
} }
}
return true; //* fallback if all customForms returned true return true; //* fallback if all customForms returned true
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment