Skip to content

Commit 0f66c1c

Browse files
committed
chore(selext): Address comments #7487
1 parent 0fc8ee6 commit 0f66c1c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

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

33
All notable changes for each version of this project will be documented in this file.
44

5-
## 9.2.0
5+
## 10.0.0
66

77
### New Features
88

projects/igniteui-angular/src/lib/select/select.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -341,9 +341,10 @@ export class IgxSelectComponent extends IgxDropDownComponent implements IgxSelec
341341
super.open(Object.assign({}, this._overlayDefaults, this.overlaySettings, overlaySettings));
342342
}
343343

344-
public inputGroupClick(event: MouseEvent) {
345-
if ((event.target as HTMLElement).className !== 'igx-input-group__hint') {
346-
this.toggle();
344+
public inputGroupClick(event: MouseEvent, overlaySettings?: OverlaySettings) {
345+
const targetClass = (event.target as HTMLElement).className;
346+
if (!targetClass.includes('igx-input-group__hint')) {
347+
this.toggle(Object.assign({}, this._overlayDefaults, this.overlaySettings, overlaySettings));
347348
}
348349
}
349350

0 commit comments

Comments
 (0)