From 294487eb614ed7e59a12799ed7b6c5699f9846e7 Mon Sep 17 00:00:00 2001 From: "Dedy F. Setyawan" Date: Fri, 10 Jul 2026 04:21:07 +0700 Subject: [PATCH] fix(ui): prevent table container from breaking flexbox layout (#10754) Signed-off-by: Dedy F. Setyawan --- core/http/react-ui/src/App.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/http/react-ui/src/App.css b/core/http/react-ui/src/App.css index d6f54256f..d14aa8f08 100644 --- a/core/http/react-ui/src/App.css +++ b/core/http/react-ui/src/App.css @@ -2425,6 +2425,9 @@ select.input { overflow-x: auto; border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg); + /* Prevent flexbox container from stretching due to large inner HTML tables */ + width: 1px; + min-width: 100%; } /* ResponsiveTable: stack dense tables into label/value cards on narrow screens