Add text overflow handling for invite link in Organization Settings dialog

This commit is contained in:
Leon Bösche
2026-01-24 04:29:02 +01:00
parent 56f3de5d0d
commit c0a3e4d8c3

View File

@@ -464,6 +464,8 @@ class _OrganizationSettingsDialogState
Expanded(
child: Text(
'https://b0esche.cloud/join?token=${_inviteLink ?? ''}',
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(color: AppTheme.secondaryText),
),
),