From ba986021cdf52ceb50bcc27b9fa4287ab9c2a738 Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Thu, 26 Feb 2026 10:50:13 -0500 Subject: [PATCH] feat: enhance container status display with tooltip for detailed information --- frontend/src/components/EditorLayout.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/EditorLayout.tsx b/frontend/src/components/EditorLayout.tsx index debef327..044bad8b 100644 --- a/frontend/src/components/EditorLayout.tsx +++ b/frontend/src/components/EditorLayout.tsx @@ -710,9 +710,18 @@ export default function EditorLayout() {
- - {getContainerBadge(container).text || 'unknown'} - + + + + + {getContainerBadge(container).text || 'unknown'} + + + +

{container?.Status || 'No status details available'}

+
+
+
CPU: {containerStats[container?.Id]?.cpu || 'N/A'} | RAM: {containerStats[container?.Id]?.ram || 'N/A'}