1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-22 19:23:58 +00:00

[SG-1022] Update min password requirements to 12 char (#2368)

* work: adjusted numbers to 12

* work: made string dynamic

* fix: spaces
This commit is contained in:
Brandon Maharaj
2023-02-16 13:15:40 -05:00
committed by GitHub
parent 8ec6c7f0f7
commit bf7d9b5646
6 changed files with 28 additions and 27 deletions

View File

@@ -152,7 +152,7 @@ namespace Bit.App.Pages
if (MasterPassword.Length < Constants.MasterPasswordMinimumChars)
{
await Page.DisplayAlert(AppResources.MasterPasswordPolicyValidationTitle,
AppResources.MasterPasswordLengthValMessage, AppResources.Ok);
string.Format(AppResources.MasterPasswordLengthValMessageX, Constants.MasterPasswordMinimumChars), AppResources.Ok);
return;
}
}