1
0
forked from baron/baron-sso

접속이력 테이블 Session ID 컬럼 최대폭 제한 추가

This commit is contained in:
2026-03-24 13:00:24 +09:00
parent 118e004294
commit 5bb10ba1e6

View File

@@ -1440,9 +1440,12 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
}
double _historySessionColumnWidth(double maxWidth) {
return math.max(
_historySessionMinWidth,
maxWidth - _historyOtherColumnsBaselineWidth,
return math.min(
200.0,
math.max(
_historySessionMinWidth,
maxWidth - _historyOtherColumnsBaselineWidth,
),
);
}