diff options
author | Andrey Borysenko <andrey18106x@gmail.com> | 2024-10-11 18:33:10 +0300 |
---|---|---|
committer | Andrey Borysenko <andrey18106x@gmail.com> | 2024-10-29 20:54:07 +0200 |
commit | 70a8d26f5d499ec97c1f3606e4ec852e49bb933b (patch) | |
tree | 38724338641472b9777de5cc579b4e971609838c /apps/settings | |
parent | 4f109beee7279d30e9bd3d9f1d3c5745e5f27fc5 (diff) | |
download | nextcloud-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.vue | 2 |
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> |