From ff7eff1a4f03b0ae9a0f558fdea6bc2fbdd2afd9 Mon Sep 17 00:00:00 2001 From: jakub961241 <144362244+jakub961241@users.noreply.github.com> Date: Sun, 22 Mar 2026 01:21:00 +0100 Subject: [PATCH] feat: allow stopping apps while in restarting state (#12061) The Stop button was disabled for apps in 'ReStarting' status because the condition only allowed 'Running'. Apps stuck in a restart loop (e.g., due to DB connection issues) could not be stopped. Added 'ReStarting' to the allowed statuses for the Stop operation. Closes #12061 --- frontend/src/views/app-store/installed/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/app-store/installed/index.vue b/frontend/src/views/app-store/installed/index.vue index 5e8c2708920f..12b5aa1557c6 100644 --- a/frontend/src/views/app-store/installed/index.vue +++ b/frontend/src/views/app-store/installed/index.vue @@ -365,7 +365,7 @@ const buttons = [ }, disabled: (row: any) => { return ( - row.status !== 'Running' || + (row.status !== 'Running' && row.status !== 'ReStarting') || row.status === 'DownloadErr' || row.status === 'Upgrading' || row.status === 'Rebuilding' ||