Skip to content

Commit 4a5a1b8

Browse files
committed
style: update not available text color in engagements page
- Modify the style of the 'not available' text in the engagements page - Use onSurface color with 60% opacity for better visibility
1 parent 10a92b6 commit 4a5a1b8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/community_management/view/engagements_page.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,9 @@ class _EngagementsDataSource extends DataTableSource {
212212
)
213213
: Text(
214214
l10n.notAvailable,
215-
style: Theme.of(context).textTheme.bodySmall,
215+
style: Theme.of(context).textTheme.bodySmall?.copyWith(
216+
color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
217+
),
216218
),
217219
),
218220
DataCell(

0 commit comments

Comments
 (0)