mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +00:00
[PM-10026] [Defect] Zip code is not being enforced when subscribing in Password Manager (#10446)
* resolve the postal code error * Resolve the issue if licence is uploaded * resolve the postal code issue on selfhost
This commit is contained in:
@@ -65,10 +65,12 @@ export class PremiumComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
submit = async () => {
|
||||
if (!this.taxInfoComponent?.taxFormGroup.valid && this.taxInfoComponent?.taxFormGroup.touched) {
|
||||
if (this.taxInfoComponent) {
|
||||
if (!this.taxInfoComponent?.taxFormGroup.valid) {
|
||||
this.taxInfoComponent.taxFormGroup.markAllAsTouched();
|
||||
return;
|
||||
}
|
||||
}
|
||||
this.licenseForm.markAllAsTouched();
|
||||
this.addonForm.markAllAsTouched();
|
||||
if (this.selfHosted) {
|
||||
|
||||
@@ -554,10 +554,12 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy {
|
||||
}
|
||||
|
||||
submit = async () => {
|
||||
if (!this.taxComponent?.taxFormGroup.valid && this.taxComponent?.taxFormGroup.touched) {
|
||||
if (this.taxComponent) {
|
||||
if (!this.taxComponent?.taxFormGroup.valid) {
|
||||
this.taxComponent?.taxFormGroup.markAllAsTouched();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (this.singleOrgPolicyBlock) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user