Commit 698f0d6

derdilla <82763757+NobodyForNothing@users.noreply.github.com>
2023-11-17 14:50:51
fix double spaces in date format
Signed-off-by: derdilla <82763757+NobodyForNothing@users.noreply.github.com>
1 parent 423b42d
Changed files (1)
lib
model
lib/model/storage/settings_store.dart
@@ -167,7 +167,7 @@ class Settings extends ChangeNotifier {
     notifyListeners();
   }
 
-  String _dateFormatString = 'yyyy-MM-dd  HH:mm';
+  String _dateFormatString = 'yyyy-MM-dd HH:mm';
   String get dateFormatString => _dateFormatString;
   set dateFormatString(String value) {
     _dateFormatString = value;