1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00: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

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);
});