Multiple bug fixing

This commit is contained in:
Julien Nahum
2024-02-10 12:20:45 +01:00
parent f2916b9e31
commit 91911bc6e5
16 changed files with 51 additions and 51 deletions

View File

@@ -145,7 +145,9 @@ export default {
this.fetchGeneratedForm(generationId)
}
}).catch(error => {
this.useAlert.error(error.data.message)
if (error?.data?.message){
this.useAlert.error(error.data.message)
}
this.state = 'default'
this.loading = false
})