1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-04-07 18:57:06 +02:00

[PM-12338] fix length hint on passphrase num words field (#11963)

This commit is contained in:
✨ Audrey ✨ 2024-11-11 14:23:02 -05:00 committed by GitHub
parent e87cc5896b
commit a5294bed3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -102,8 +102,8 @@ export class PassphraseSettingsComponent implements OnInit, OnDestroy {
const boundariesHint = this.i18nService.t(
"generatorBoundariesHint",
constraints.numWords.min,
constraints.numWords.max,
constraints.numWords.min?.toString(),
constraints.numWords.max?.toString(),
);
this.numWordsBoundariesHint.next(boundariesHint);
});