diff options
Diffstat (limited to 'settings/src/components/appManagement.vue')
-rw-r--r-- | settings/src/components/appManagement.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/src/components/appManagement.vue b/settings/src/components/appManagement.vue index 06df59b32b2..b2b78baaf53 100644 --- a/settings/src/components/appManagement.vue +++ b/settings/src/components/appManagement.vue @@ -82,7 +82,7 @@ .catch((error) => { OC.Notification.show(error)}); }, install(appId) { - this.$store.dispatch('installApp', { appId: appId }) + this.$store.dispatch('enableApp', { appId: appId }) .then((response) => { OC.Settings.Apps.rebuildNavigation(); }) .catch((error) => { OC.Notification.show(error)}); }, |