react-crud-mobile 1.3.176 → 1.3.178

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": "react-crud-mobile",
3
- "version": "1.3.176",
3
+ "version": "1.3.178",
4
4
  "license": "MIT",
5
5
  "description": "Uma biblioteca de componentes para React Native",
6
6
  "main": "dist/index.js",
@@ -720,7 +720,7 @@ let boxStyle = StyleSheet.create({
720
720
  const box: any = {
721
721
  ...boxStyle.box,
722
722
  };
723
- //v3
723
+ //v4
724
724
  const elementStyle: any = {};
725
725
 
726
726
  elementStyle.view = {
@@ -55,7 +55,7 @@ export default function UIList(props: ChildType) {
55
55
  let filterBy = Utils.nvl(original.filterBy, 'label');
56
56
 
57
57
  Utils.each(list, o => {
58
- let label = o[filterBy];
58
+ let label = Utils.getValue(filterBy, 'none', o).toLowerCase();
59
59
 
60
60
  if (label) {
61
61
  if (label.includes(query)) {