Fix phone dial code detectino for default country.

This commit is contained in:
devaskim 2022-10-25 21:09:39 +05:00
parent 4cc7e7b373
commit 92d4d1dfc9

View File

@ -94,6 +94,9 @@ export class PhoneInputComponent implements OnInit, ControlValueAccessor, Valida
set isLoad(value) {
if (this.isLoading) {
this.isLoading = value;
if (this.defaultCountry) {
this.getFlagAndPhoneNumberData(this.defaultCountry);
}
if (this.phoneFormGroup) {
this.defineCountryFromNumber(this.phoneFormGroup.get('phoneNumber').value);
}
@ -125,12 +128,10 @@ export class PhoneInputComponent implements OnInit, ControlValueAccessor, Valida
this.validators.push(Validators.required);
}
this.phoneFormGroup = this.fb.group({
country: [this.defaultCountry, []],
country: [null, []],
phoneNumber: [null, this.validators]
});
this.flagIcon = this.getFlagIcon(this.phoneFormGroup.get('country').value);
this.changeSubscriptions.push(this.phoneFormGroup.get('phoneNumber').valueChanges.subscribe(value => {
this.updateModel();
this.defineCountryFromNumber(value);