diff --git a/frontend/components.d.ts b/frontend/components.d.ts index 300dbd7d..cab22a72 100644 --- a/frontend/components.d.ts +++ b/frontend/components.d.ts @@ -11,8 +11,6 @@ declare module 'vue' { Appearance: typeof import('./src/components/settings/Appearance.vue')['default'] ArrayInput: typeof import('./src/components/ArrayInput.vue')['default'] ArraySelect: typeof import('./src/components/ArraySelect.vue')['default'] - BDropdown: typeof import('bootstrap-vue-next')['BDropdown'] - BDropdownItem: typeof import('bootstrap-vue-next')['BDropdownItem'] BModal: typeof import('bootstrap-vue-next')['BModal'] Confirm: typeof import('./src/components/Confirm.vue')['default'] Container: typeof import('./src/components/Container.vue')['default'] diff --git a/frontend/src/pages/Compose.vue b/frontend/src/pages/Compose.vue index 416b13d0..3a531c00 100644 --- a/frontend/src/pages/Compose.vue +++ b/frontend/src/pages/Compose.vue @@ -36,29 +36,28 @@ {{ $t("restartStack") }} - - - - - - {{ $t("downStack") }} - - + + + + + - @@ -258,7 +257,8 @@ import { getCombinedTerminalName, getComposeTerminalName, PROGRESS_TERMINAL_ROWS, - RUNNING + RUNNING, + EXITED } from "../../../common/util-common"; import { BModal } from "bootstrap-vue-next"; import NetworkInput from "../components/NetworkInput.vue"; @@ -389,7 +389,7 @@ export default { }, active() { - return this.status === RUNNING; + return this.status === RUNNING || this.status === EXITED; }, terminalName() {