Skip to content

Commit 6de3e51

Browse files
authored
fix(combo): move ngIf to search wrapper, not on input group (#15087)
1 parent b42e8f8 commit 6de3e51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/igniteui-angular/src/lib/combo/combo.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
[labelledBy]="ariaLabelledBy || label?.id || placeholder || ''"
3636
[width]="itemsWidth || '100%'" (opening)="handleOpening($event)" (closing)="handleClosing($event)"
3737
(opened)="handleOpened()" (closed)="handleClosed()">
38-
<div class="igx-combo__search">
39-
<igx-input-group *ngIf="displaySearchInput">
38+
<div class="igx-combo__search" *ngIf="displaySearchInput">
39+
<igx-input-group>
4040
<input igxInput #searchInput name="searchInput" autocomplete="off" type="text"
4141
[(ngModel)]="searchValue" (ngModelChange)="handleInputChange($event)" (keyup)="handleKeyUp($event)"
4242
(keydown)="handleKeyDown($event)" (focus)="dropdown.onBlur($event)" [attr.placeholder]="getSearchPlaceholderText()"

0 commit comments

Comments
 (0)