Skip to content

Commit d77c9ee

Browse files
committed
fix(input-group): change method name
1 parent acd7bec commit d77c9ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

projects/igniteui-angular/src/lib/input-group/input-group.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<div class="igx-input-group__border" *ngIf="hasBorder"></div>
66

7-
<div class="igx-input-group__hint" (click)="onEvent($event)">
7+
<div class="igx-input-group__hint" (click)="hintClickHandler($event)">
88
<ng-content select="igx-hint, [igxHint]"></ng-content>
99
</div>
1010

projects/igniteui-angular/src/lib/input-group/input-group.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export class IgxInputGroupComponent extends DisplayDensityBase
184184
}
185185
}
186186

187-
onEvent(event) {
187+
hintClickHandler(event) {
188188
event.stopPropagation();
189189
}
190190

0 commit comments

Comments
 (0)