Typo fixes [SCI-9221]

This commit is contained in:
Martin Artnik 2025-01-20 16:31:06 +01:00
parent a19383cd71
commit ac9b567b66
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ export default {
data() {
return {
submitting: false
}
};
},
mounted() {
$(this.$refs.modal).modal('show');

View file

@ -66,7 +66,7 @@ export default {
this.submitting = false;
HelperModule.flashAlertMsg(response.data.message, 'success');
}).catch((error) => {
this.submitting = flase;
this.submitting = false;
HelperModule.flashAlertMsg(error.response.data.error, 'danger');
});
}