Parcourir la source

avoid error when loading

pull/68/head
Jonathan Cobb il y a 4 ans
Parent
révision
6b04363c9c
1 fichiers modifiés avec 7 ajouts et 5 suppressions
  1. +7
    -5
      src/_pages/main/account/MyAccount.vue

+ 7
- 5
src/_pages/main/account/MyAccount.vue Voir le fichier

@@ -71,12 +71,14 @@ export default {
manage_account_actions: function () {
if (this.messages) {
const account_actions = this.configs.bubbleNode === true ? 'manage_account_node_actions' : 'manage_account_sage_actions';
const actions = this.messages[account_actions].split(',');
if (this.currentUser.admin && this.currentUser.firstAdmin) {
const delete_index = actions.indexOf('delete');
if (delete_index !== -1) actions.splice(delete_index, 1);
if (this.messages[account_actions]) {
const actions = this.messages[account_actions].split(',');
if (this.currentUser.admin && this.currentUser.firstAdmin) {
const delete_index = actions.indexOf('delete');
if (delete_index !== -1) actions.splice(delete_index, 1);
}
return actions;
}
return actions;
}
}
},


Chargement…
Annuler
Enregistrer