1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-23 03:33:59 +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

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