Sync Configuration Fix
Russian translations off-by-one until f8f8c74e3d. Cast {count} in "all:' translation was breaking code. Fixing translation negates need for "as String" modifier. This fixes white screen when opening Sync Configuration from Settings.
This commit is contained in:
@@ -359,7 +359,7 @@ class _SyncFilterBottomSheetState extends State<SyncFilterBottomSheet> {
|
||||
subtitle: Text(
|
||||
count > 0
|
||||
? "$count ${localization.selected}"
|
||||
: localization.all as String,
|
||||
: localization.all,
|
||||
),
|
||||
trailing: const Icon(Icons.arrow_forward_ios, size: 16),
|
||||
onTap: onTap,
|
||||
|
||||
Reference in New Issue
Block a user