ywana-core8 0.0.397 → 0.0.398

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": "ywana-core8",
3
- "version": "0.0.397",
3
+ "version": "0.0.398",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
@@ -483,7 +483,10 @@ const TableContext = (url, field, host, urlQuery) => {
483
483
 
484
484
  if (field) {
485
485
  if (CHECK['isObject'](field)) {
486
- Object.keys(field).forEach(key2 => filters[`${key}.${key2}`] = field[key2])
486
+ Object.keys(field).forEach(key2 => {
487
+ const subfield = field[key2]
488
+ if (subfield) filters[`${key}.${key2}`] = subfield
489
+ })
487
490
  } else {
488
491
  filters[key] = field;
489
492
  }