aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings
diff options
context:
space:
mode:
authorAndrey Borysenko <andrey18106x@gmail.com>2024-10-11 18:33:10 +0300
committerAndrey Borysenko <andrey18106x@gmail.com>2024-10-29 20:54:07 +0200
commit70a8d26f5d499ec97c1f3606e4ec852e49bb933b (patch)
tree38724338641472b9777de5cc579b4e971609838c /apps/settings
parent4f109beee7279d30e9bd3d9f1d3c5745e5f27fc5 (diff)
downloadnextcloud-server-70a8d26f5d499ec97c1f3606e4ec852e49bb933b.tar.gz
nextcloud-server-70a8d26f5d499ec97c1f3606e4ec852e49bb933b.zip
WIP: add missing state checks
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
Diffstat (limited to 'apps/settings')
-rw-r--r--apps/settings/src/components/AppList/AppItem.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/src/components/AppList/AppItem.vue b/apps/settings/src/components/AppList/AppItem.vue
index 2181931898d..f44ff3a3a7d 100644
--- a/apps/settings/src/components/AppList/AppItem.vue
+++ b/apps/settings/src/components/AppList/AppItem.vue
@@ -90,7 +90,7 @@
{{ t('settings', 'Remove') }}
</NcButton>
<NcButton v-if="app.active"
- :disabled="installing || isLoading"
+ :disabled="installing || isLoading || isInitializing || isDeploying"
@click.stop="disable(app.id)">
{{ disableButtonText }}
</NcButton>