@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/ui",
3
- "version": "0.3.356",
3
+ "version": "0.3.357",
4
4
  "description": "Base UI for OneHat apps",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -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
  });