@visns-studio/visns-components 4.10.35 → 4.10.37

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
@@ -77,7 +77,7 @@
77
77
  "react-dom": "^17.0.0 || ^18.0.0"
78
78
  },
79
79
  "name": "@visns-studio/visns-components",
80
- "version": "4.10.35",
80
+ "version": "4.10.37",
81
81
  "description": "Various packages to assist in the development of our Custom Applications.",
82
82
  "main": "src/index.js",
83
83
  "files": [
@@ -258,6 +258,12 @@ function Field({
258
258
  filter.orderBy = s.orderBy;
259
259
  }
260
260
 
261
+ if (s.where) {
262
+ forEach(s.where, (w) => {
263
+ filter.where.push(w);
264
+ });
265
+ }
266
+
261
267
  CustomFetch(s.child.url, 'POST', filter, function (result) {
262
268
  childDropdownCallback({
263
269
  id: s.child.id,