Skip to content

Commit

Permalink
chore(*): adding (very) important property
Browse files Browse the repository at this point in the history
  • Loading branch information
ChronosSF committed Jun 6, 2024
1 parent 19cb6ed commit a7809e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
(closing)="onClosing()" (opened)="onOpened()"
(closed)="onClosed()"
placeholder="Location(s)"
[filteringOptions]="{ filterable: true }">
[filteringOptions]="{ filterable: true, caseSensitive: false }">
</igx-combo>
<igx-toast #loadingToast></igx-toast>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="control-wrapper">
<igx-combo [width]="'430px'" [data]="weaponsData" [displayKey]="'field'" [valueKey]="'field'" [overlaySettings]="{outlet: elem}"
[groupKey]="'weaponRange'" placeholder="Pick up two weapons" searchPlaceholder="Search..." [filteringOptions]="{ filterable: true }"
[groupKey]="'weaponRange'" placeholder="Pick up two weapons" searchPlaceholder="Search..." [filteringOptions]="{ filterable: true, caseSensitive: false }"
[itemsMaxHeight]="255" (selectionChanging)="setWeaponsLimit($event)">
</igx-combo>

Expand Down

0 comments on commit a7809e9

Please sign in to comment.