forked from baron/baron-sso
Merge origin/main and remove Descope deps
This commit is contained in:
@@ -571,14 +571,10 @@ class _DashboardScreenState extends ConsumerState<DashboardScreen> {
|
||||
|
||||
Widget _buildAppCell(AuditLogEntry log, {TextStyle? style}) {
|
||||
final label = _appLabelForLog(log);
|
||||
if (label == 'Baron 통합로그인') {
|
||||
return _selectableText(label, style: style);
|
||||
}
|
||||
final tooltip = log.parentSessionId.isEmpty
|
||||
? '부모 세션 ID 없음'
|
||||
: '부모 세션 ID: ${log.parentSessionId}';
|
||||
final clientId = log.clientId;
|
||||
final tooltip = clientId.isEmpty ? 'Client ID 없음' : 'Client ID: $clientId';
|
||||
final baseStyle = style ?? const TextStyle();
|
||||
final emphasisStyle = log.parentSessionId.isEmpty
|
||||
final emphasisStyle = clientId.isEmpty
|
||||
? baseStyle
|
||||
: baseStyle.copyWith(
|
||||
color: Colors.blueAccent,
|
||||
|
||||
Reference in New Issue
Block a user