From 5bb10ba1e610792dd4472ebb04887e532abba46c Mon Sep 17 00:00:00 2001 From: kyy Date: Tue, 24 Mar 2026 13:00:24 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A0=91=EC=86=8D=EC=9D=B4=EB=A0=A5=20?= =?UTF-8?q?=ED=85=8C=EC=9D=B4=EB=B8=94=20Session=20ID=20=EC=BB=AC=EB=9F=BC?= =?UTF-8?q?=20=EC=B5=9C=EB=8C=80=ED=8F=AD=20=EC=A0=9C=ED=95=9C=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dashboard/presentation/dashboard_screen.dart | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/userfront/lib/features/dashboard/presentation/dashboard_screen.dart b/userfront/lib/features/dashboard/presentation/dashboard_screen.dart index d4a79714..fc6a9767 100644 --- a/userfront/lib/features/dashboard/presentation/dashboard_screen.dart +++ b/userfront/lib/features/dashboard/presentation/dashboard_screen.dart @@ -1440,9 +1440,12 @@ class _DashboardScreenState extends ConsumerState { } double _historySessionColumnWidth(double maxWidth) { - return math.max( - _historySessionMinWidth, - maxWidth - _historyOtherColumnsBaselineWidth, + return math.min( + 200.0, + math.max( + _historySessionMinWidth, + maxWidth - _historyOtherColumnsBaselineWidth, + ), ); }