ngx-mat-intl-tel-input
ngx-mat-intl-tel-input copied to clipboard
Have to remove Languages
Hi am using this package in my application I need to remove the languages for country dropdown
ropdown
@jawahar95 if you mean removing the word in brackets, I'm doing it like this (simplified):
@ViewChild(NgxMatIntlTelInputComponent) phoneInput: NgxMatIntlTelInputComponent;
ngAfterViewChecked(): void {
this.phoneInput?.allCountries.forEach((country) => country.name.replace(/( \(.*\))$/, ''));
}
It won't work