fix permission success issue

This commit is contained in:
raishvaria
2019-11-23 14:08:01 +05:30
parent 1d56bd9f36
commit 9f4b5e02e8

View File

@ -57,6 +57,7 @@ export default {
this.errors = response.data.permissions.errors
let self = this
if (this.errors) {
swal({
title: this.$t('wizard.permissions.permission_confirm_title'),
text: this.$t('wizard.permissions.permission_confirm_desc'),
@ -68,6 +69,9 @@ export default {
self.isContinue = true
}
})
} else {
this.isContinue = true
}
this.loading = false
}