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/dist/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +2 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +2 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage.js +4 -1
package/package.json
CHANGED
package/src/domain/TablePage.js
CHANGED
@@ -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 =>
|
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
|
}
|