Skip to content

Commit cdebeea

Browse files
committed
fix(combo): renamed function
1 parent 0a9af40 commit cdebeea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

projects/igniteui-angular/src/lib/combo/combo.common.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1212,7 +1212,7 @@ export abstract class IgxComboBaseDirective implements IgxComboBase, AfterViewCh
12121212
public handleClosed() {
12131213
this.closed.emit({ owner: this });
12141214
if(this.comboInput.nativeElement !== this.document.activeElement){
1215-
this._validateComboState();
1215+
this.validateComboState();
12161216
}
12171217
}
12181218

@@ -1252,7 +1252,7 @@ export abstract class IgxComboBaseDirective implements IgxComboBase, AfterViewCh
12521252
/** @hidden @internal */
12531253
public onBlur() {
12541254
if (this.collapsed) {
1255-
this._validateComboState();
1255+
this.validateComboState();
12561256
}
12571257
}
12581258

@@ -1280,7 +1280,7 @@ export abstract class IgxComboBaseDirective implements IgxComboBase, AfterViewCh
12801280
this.manageRequiredAsterisk();
12811281
};
12821282

1283-
private _validateComboState() {
1283+
private validateComboState() {
12841284
this._onTouchedCallback();
12851285

12861286
if (this.ngControl && this.ngControl.invalid) {

0 commit comments

Comments
 (0)