Browse Source

Fix validation clearing for new project selection (#5301)

pull/5319/head
Thomas Avery 3 years ago committed by GitHub
parent
commit
3c42178c81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      bitwarden_license/bit-web/src/app/secrets-manager/secrets/dialog/secret-dialog.component.ts

2
bitwarden_license/bit-web/src/app/secrets-manager/secrets/dialog/secret-dialog.component.ts

@ -144,7 +144,7 @@ export class SecretDialogComponent implements OnInit {
this.formGroup.get("newProjectName").clearValidators(); this.formGroup.get("newProjectName").clearValidators();
} }
this.formGroup.updateValueAndValidity(); this.formGroup.get("newProjectName").updateValueAndValidity();
} }
get title() { get title() {

Loading…
Cancel
Save