Correct button styling

This commit is contained in:
Hillel Coren 2021-05-02 13:37:43 +03:00
parent 0f51e35cbd
commit 8cefc3c1bc
1 changed files with 4 additions and 1 deletions

View File

@ -351,7 +351,10 @@ class _EntityListState extends State<EntityList> {
if (isDesktop(context)) ...[
Padding(
padding: const EdgeInsets.symmetric(horizontal: 8),
child: Text('($countSelected)'),
child: Text(isList
? '($countSelected)'
: localization.countSelected
.replaceFirst(':count', '$countSelected')),
),
Expanded(
child: Align(