diff options
author | Andrey Borysenko <andrey18106x@gmail.com> | 2024-10-11 18:33:10 +0300 |
---|---|---|
committer | Andrey Borysenko <andrey18106x@gmail.com> | 2024-10-30 20:36:54 +0200 |
commit | 3d4f0f9b550e0315ede88e36ca580696e72434ff (patch) | |
tree | 9f80845406b21b69aaa364e0e4f75d9558709ab7 /apps | |
parent | 18c9a03696d1af7139ca2247bb2bd0db02be54c5 (diff) | |
download | nextcloud-server-3d4f0f9b550e0315ede88e36ca580696e72434ff.tar.gz nextcloud-server-3d4f0f9b550e0315ede88e36ca580696e72434ff.zip |
WIP: add missing state checks
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
Diffstat (limited to 'apps')
-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 4321bfa9a15..189eee7cd93 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> |