File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
projects/igniteui-angular/src/lib/combo Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1219,7 +1219,7 @@ export abstract class IgxComboBaseDirective extends DisplayDensityBase implement
12191219 public handleClosed ( ) {
12201220 this . closed . emit ( { owner : this } ) ;
12211221 if ( this . comboInput . nativeElement !== this . document . activeElement ) {
1222- this . _validateComboState ( ) ;
1222+ this . validateComboState ( ) ;
12231223 }
12241224 }
12251225
@@ -1259,7 +1259,7 @@ export abstract class IgxComboBaseDirective extends DisplayDensityBase implement
12591259 /** @hidden @internal */
12601260 public onBlur ( ) {
12611261 if ( this . collapsed ) {
1262- this . _validateComboState ( ) ;
1262+ this . validateComboState ( ) ;
12631263 }
12641264 }
12651265
@@ -1287,7 +1287,7 @@ export abstract class IgxComboBaseDirective extends DisplayDensityBase implement
12871287 this . manageRequiredAsterisk ( ) ;
12881288 } ;
12891289
1290- private _validateComboState ( ) {
1290+ private validateComboState ( ) {
12911291 this . _onTouchedCallback ( ) ;
12921292
12931293 if ( this . ngControl && this . ngControl . invalid ) {
You can’t perform that action at this time.
0 commit comments