@onehat/ui 0.3.356 → 0.3.357
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.
package/package.json
CHANGED
|
@@ -438,7 +438,7 @@ export function ComboComponent(props) {
|
|
|
438
438
|
fn: (entity) => {
|
|
439
439
|
const
|
|
440
440
|
displayValue = entity.displayValue,
|
|
441
|
-
regex = new RegExp('^' + value);
|
|
441
|
+
regex = new RegExp('^' + value, 'i'); // case-insensitive
|
|
442
442
|
return displayValue.match(regex);
|
|
443
443
|
},
|
|
444
444
|
});
|