1
0
mirror of https://github.com/bitwarden/web synced 2025-12-19 17:53:22 +00:00

Enforce Password Generator Policy Options (#469)

* Initial commit for enforcing password generator policy options

* Revert to previous isDev URL setup
This commit is contained in:
Vincent Salucci
2020-02-26 18:32:57 -06:00
committed by GitHub
parent 5ed830205d
commit a27eddae56
5 changed files with 21 additions and 13 deletions

View File

@@ -47,4 +47,12 @@ export class PasswordGeneratorComponent extends BasePasswordGeneratorComponent {
lengthChanged() {
document.getElementById('length').focus();
}
minNumberChanged() {
document.getElementById('min-number').focus();
}
minSpecialChanged() {
document.getElementById('min-special').focus();
}
}