aboutsummaryrefslogtreecommitdiffstats
path: root/settings/src/components/appManagement.vue
diff options
context:
space:
mode:
Diffstat (limited to 'settings/src/components/appManagement.vue')
-rw-r--r--settings/src/components/appManagement.vue10
1 files changed, 10 insertions, 0 deletions
diff --git a/settings/src/components/appManagement.vue b/settings/src/components/appManagement.vue
index 24f56040900..a78259ab1aa 100644
--- a/settings/src/components/appManagement.vue
+++ b/settings/src/components/appManagement.vue
@@ -22,6 +22,16 @@
<script>
export default {
+ mounted() {
+ if (this.app.groups.length > 0) {
+ this.groupCheckedAppsData = true;
+ }
+ },
+ computed: {
+ appGroups() {
+ return this.app.groups.map(group => {return {id: group, name: group}});
+ },
+ },
methods: {
isLimitedToGroups(app) {
if (this.app.groups.length || this.groupCheckedAppsData) {