From c21910c203ff4ee830b10e2bb3e5f36678f45b16 Mon Sep 17 00:00:00 2001 From: KOMATA <20227709+HynoR@users.noreply.github.com> Date: Tue, 3 Mar 2026 18:31:47 +0800 Subject: [PATCH] feat: enhance container compose view with additional status indicators and environment configuration options (#12042) - Added visual indicators for container status and creation date. - Introduced a new radio button for environment configuration alongside existing options. - Improved layout and styling for better user experience. - Adjusted table column widths and added a class for styling. --- .../src/views/container/compose/index.vue | 130 ++++++++++++++---- 1 file changed, 100 insertions(+), 30 deletions(-) diff --git a/frontend/src/views/container/compose/index.vue b/frontend/src/views/container/compose/index.vue index b829556ad..cf4de89a2 100644 --- a/frontend/src/views/container/compose/index.vue +++ b/frontend/src/views/container/compose/index.vue @@ -123,11 +123,46 @@ +
+
+ {{ currentCompose.name }} + + {{ loadFrom(currentCompose) }} + + + {{ currentCompose.createdAt }} +
+ + {{ $t('container.exited') }} + + + {{ + $t('container.running', [ + currentCompose.runningCount, + currentCompose.containerCount, + ]) + }} + +
+ + + - + @@ -224,7 +259,7 @@ - +