@kris701/ez-ui 1.4.10 → 1.4.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3327,7 +3327,7 @@ class EzUITreeMultiSelect {
|
|
|
3327
3327
|
}
|
|
3328
3328
|
expandSearchRec(from, newMap) {
|
|
3329
3329
|
let expanded = false;
|
|
3330
|
-
if (from.label.includes(this.searchValue())) {
|
|
3330
|
+
if (from.label.toLowerCase().includes(this.searchValue().toLowerCase())) {
|
|
3331
3331
|
newMap.set(from, true);
|
|
3332
3332
|
expanded = true;
|
|
3333
3333
|
}
|
|
@@ -4210,7 +4210,7 @@ class EzUITreeSelect {
|
|
|
4210
4210
|
}
|
|
4211
4211
|
expandSearchRec(from, newMap) {
|
|
4212
4212
|
let expanded = false;
|
|
4213
|
-
if (from.label.includes(this.searchValue())) {
|
|
4213
|
+
if (from.label.toLowerCase().includes(this.searchValue().toLowerCase())) {
|
|
4214
4214
|
newMap.set(from, true);
|
|
4215
4215
|
expanded = true;
|
|
4216
4216
|
}
|