summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-08-10 13:38:06 +0200
committerJulius Härtl <jus@bitgrid.net>2018-08-10 13:38:06 +0200
commit1abf0717dff7181fb02fc625fae9e2f29333cea1 (patch)
tree6c641e3d01fd7f711573384565346d820f144759 /settings
parent7191d676ab53a7192f363e39e045dafc35d3405d (diff)
downloadnextcloud-server-1abf0717dff7181fb02fc625fae9e2f29333cea1.tar.gz
nextcloud-server-1abf0717dff7181fb02fc625fae9e2f29333cea1.zip
Fix removeing apps in the sidebar
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'settings')
-rw-r--r--settings/src/components/appDetails.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/src/components/appDetails.vue b/settings/src/components/appDetails.vue
index ba48ea9391d..4aa39efc74b 100644
--- a/settings/src/components/appDetails.vue
+++ b/settings/src/components/appDetails.vue
@@ -48,7 +48,7 @@
<div class="actions">
<div class="actions-buttons">
<input v-if="app.update" class="update" type="button" :value="t('settings', 'Update to {version}', {version: app.update})" :disabled="installing || loading(app.id)"/>
- <input v-if="app.canUnInstall" class="uninstall" type="button" :value="t('settings', 'Remove')" :disabled="installing || loading(app.id)"/>
+ <input v-if="app.canUnInstall" class="uninstall" type="button" :value="t('settings', 'Remove')" v-on:click="remove(app.id)" :disabled="installing || loading(app.id)"/>
<input v-if="app.active" class="enable" type="button" :value="t('settings','Disable')" v-on:click="disable(app.id)" :disabled="installing || loading(app.id)" />
<input v-if="!app.active" class="enable" type="button" :value="enableButtonText" v-on:click="enable(app.id)" v-tooltip.auto="enableButtonTooltip" :disabled="!app.canInstall || installing || loading(app.id)" />
</div>