mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 00:22:15 +00:00
- admin registration fixes
- alert popup refactoring
This commit is contained in:
@@ -201,7 +201,13 @@ export default {
|
||||
})
|
||||
.catch((error) => {
|
||||
// Validation errors
|
||||
if (error.response.status == 422) {
|
||||
if (error.response.status === 409) {
|
||||
|
||||
events.$emit('alert:open', {
|
||||
title: error.response.data.message,
|
||||
})
|
||||
|
||||
} else if (error.response.status === 422) {
|
||||
// Email validation error
|
||||
if (error.response.data.errors['email']) {
|
||||
this.$refs.createUser.setErrors({
|
||||
|
||||
Reference in New Issue
Block a user