mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01: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:
parent
0b5afa6252
commit
cd7aaacfd9
@ -65,10 +65,12 @@ export class PremiumComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
submit = async () => {
|
submit = async () => {
|
||||||
if (!this.taxInfoComponent?.taxFormGroup.valid && this.taxInfoComponent?.taxFormGroup.touched) {
|
if (this.taxInfoComponent) {
|
||||||
|
if (!this.taxInfoComponent?.taxFormGroup.valid) {
|
||||||
this.taxInfoComponent.taxFormGroup.markAllAsTouched();
|
this.taxInfoComponent.taxFormGroup.markAllAsTouched();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
this.licenseForm.markAllAsTouched();
|
this.licenseForm.markAllAsTouched();
|
||||||
this.addonForm.markAllAsTouched();
|
this.addonForm.markAllAsTouched();
|
||||||
if (this.selfHosted) {
|
if (this.selfHosted) {
|
||||||
|
@ -554,10 +554,12 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
submit = async () => {
|
submit = async () => {
|
||||||
if (!this.taxComponent?.taxFormGroup.valid && this.taxComponent?.taxFormGroup.touched) {
|
if (this.taxComponent) {
|
||||||
|
if (!this.taxComponent?.taxFormGroup.valid) {
|
||||||
this.taxComponent?.taxFormGroup.markAllAsTouched();
|
this.taxComponent?.taxFormGroup.markAllAsTouched();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (this.singleOrgPolicyBlock) {
|
if (this.singleOrgPolicyBlock) {
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user