forked from baron/baron-sso
접속이력 테이블 Session ID 컬럼 최대폭 제한 추가
This commit is contained in:
@@ -1440,9 +1440,12 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
double _historySessionColumnWidth(double maxWidth) {
|
double _historySessionColumnWidth(double maxWidth) {
|
||||||
return math.max(
|
return math.min(
|
||||||
_historySessionMinWidth,
|
200.0,
|
||||||
maxWidth - _historyOtherColumnsBaselineWidth,
|
math.max(
|
||||||
|
_historySessionMinWidth,
|
||||||
|
maxWidth - _historyOtherColumnsBaselineWidth,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user