mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-08 00:51:20 +00:00
fix(i18l): Change broken validations string for superuser SSH
This commit is contained in:
parent
5570f16adf
commit
e417088340
|
@ -21,7 +21,7 @@ class SshFormCubit extends FormCubit {
|
||||||
ValidationModel(
|
ValidationModel(
|
||||||
(final String newKey) =>
|
(final String newKey) =>
|
||||||
user.sshKeys.any((final String key) => key == newKey),
|
user.sshKeys.any((final String key) => key == newKey),
|
||||||
'validations.already_exists'.tr(),
|
'validations.already_exist'.tr(),
|
||||||
),
|
),
|
||||||
RequiredStringValidation('validations.required'.tr()),
|
RequiredStringValidation('validations.required'.tr()),
|
||||||
ValidationModel<String>(
|
ValidationModel<String>(
|
||||||
|
|
Loading…
Reference in a new issue