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, + ), ); }