Fix issue when login with wrong credentials. Fixes https://github.com/GNS3/gns3-gui/issues/3714
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Build / Node 14 (push) Has been cancelled
Build / Node 16 (push) Has been cancelled
Build / Node 18 (push) Has been cancelled

This commit is contained in:
grossmj 2025-03-16 20:30:03 +07:00
parent cdf1b0ab72
commit b18b617b24
No known key found for this signature in database
GPG Key ID: 1E7DD6DBB53FF3D7

View File

@ -23,7 +23,7 @@ export class ChangeUserPasswordComponent implements OnInit {
private toasterService: ToasterService) { }
ngOnInit(): void {
const password_regex = /^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8}$/;
const password_regex = /^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}$/;
this.user = this.data.user;
this.editPasswordForm = new UntypedFormGroup({
password: new UntypedFormControl(null,