Parcourir la source

refresh apps after enable/disable

pull/1/head
Jonathan Cobb il y a 4 ans
Parent
révision
a607d50d7d
1 fichiers modifiés avec 10 ajouts et 1 suppressions
  1. +10
    -1
      src/account/AppsPage.vue

+ 10
- 1
src/account/AppsPage.vue Voir le fichier

@@ -61,7 +61,7 @@
};
},
computed: {
...mapState('apps', ['mitmEnabled', 'apps']),
...mapState('apps', ['mitmEnabled', 'apps', 'app']),
...mapState('system', ['messages'])
},
created () {
@@ -116,6 +116,15 @@
errors: this.errors
});
}
},
watch: {
app (a) {
this.getAppsByUserId({
userId: this.user.uuid,
messages: this.messages,
errors: this.errors
});
}
}
};
</script>

Chargement…
Annuler
Enregistrer