Skip to content
Snippets Groups Projects
Commit a13f6908 authored by Sébastien DA ROCHA's avatar Sébastien DA ROCHA :bicyclist:
Browse files

Merge branch 'fix/create_type_signalement' into 'develop'

fix create fix type de signalement

See merge request geocontrib/geocontrib-frontend!17
parents 15d380aa 3dec650d
No related branches found
No related tags found
No related merge requests found
......@@ -346,11 +346,12 @@ export default {
},
checkCustomForms() {
for (const customForm of this.$refs.customForms) {
if (customForm.checkCustomForm() === false) {
return false;
if (this.$refs.customForms)
for (const customForm of this.$refs.customForms) {
if (customForm.checkCustomForm() === false) {
return false;
}
}
}
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