Skip to content

Commit a7809e9

Browse files
committed
chore(*): adding (very) important property
1 parent 19cb6ed commit a7809e9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/app/lists/combo/combo-features/combo-features.component.html

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

22
<igx-combo #combo class="combo" [data]="lData" [displayKey]="'field'" [valueKey]="'field'"
33
placeholder="Location(s)" searchPlaceholder="Search..." [allowCustomValues]="customValues"
4-
(addition)="handleAddition($event)" [filteringOptions]="{ filterable: filterable }"
4+
(addition)="handleAddition($event)" [filteringOptions]="{ filterable: filterable, caseSensitive: false }"
55
[showSearchCaseIcon]="showSearchCaseIcon" [itemsMaxHeight]="255" [disabled]="disabled">
66
</igx-combo>
77

src/app/lists/combo/combo-remote/combo-remote.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
(closing)="onClosing()" (opened)="onOpened()"
1111
(closed)="onClosed()"
1212
placeholder="Location(s)"
13-
[filteringOptions]="{ filterable: true }">
13+
[filteringOptions]="{ filterable: true, caseSensitive: false }">
1414
</igx-combo>
1515
<igx-toast #loadingToast></igx-toast>

src/app/lists/combo/combo-styling/combo-styling.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="control-wrapper">
22
<igx-combo [width]="'430px'" [data]="weaponsData" [displayKey]="'field'" [valueKey]="'field'" [overlaySettings]="{outlet: elem}"
3-
[groupKey]="'weaponRange'" placeholder="Pick up two weapons" searchPlaceholder="Search..." [filteringOptions]="{ filterable: true }"
3+
[groupKey]="'weaponRange'" placeholder="Pick up two weapons" searchPlaceholder="Search..." [filteringOptions]="{ filterable: true, caseSensitive: false }"
44
[itemsMaxHeight]="255" (selectionChanging)="setWeaponsLimit($event)">
55
</igx-combo>
66

0 commit comments

Comments
 (0)