PM-8482 Change KDF Confirmation no longer has browser validation (#9485)
* PM-8482 Change KDF Confirmation no longer has browser validation * PM-8482 - ChangeKdfConfirmationComponent - use form invalid instead of manual form valid check --------- Co-authored-by: Jared Snider <jsnider@bitwarden.com>
This commit is contained in:
parent
66dc01cc62
commit
1976843f75
|
@ -41,6 +41,9 @@ export class ChangeKdfConfirmationComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
submit = async () => {
|
submit = async () => {
|
||||||
|
if (this.form.invalid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
await this.makeKeyAndSaveAsync();
|
await this.makeKeyAndSaveAsync();
|
||||||
this.platformUtilsService.showToast(
|
this.platformUtilsService.showToast(
|
||||||
|
|
Loading…
Reference in New Issue