Show new settings

This commit is contained in:
Hillel Coren 2023-01-12 17:26:43 +02:00
parent 8a0dbd2482
commit 848e1a6e56
2 changed files with 4 additions and 1 deletions

View File

@ -572,6 +572,9 @@ class SettingsSearch extends StatelessWidget {
'attach_documents',
'attach_ubl',
'email_signature',
'microsoft',
'postmark#2023-01-11',
'mailgun#2023-01-11',
],
],
kSettingsTemplatesAndReminders: [

View File

@ -93006,7 +93006,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
final englishValue = _localizedValues['en'][lookupKey] ?? '';
return englishValue.isEmpty ? key : englishValue;
return englishValue.isEmpty ? toTitleCase(key) : englishValue;
}
return value;