@ditojs/admin 2.2.7-debug.1 → 2.2.7-debug.2

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": "@ditojs/admin",
3
- "version": "2.2.7-debug.1",
3
+ "version": "2.2.7-debug.2",
4
4
  "type": "module",
5
5
  "description": "Dito.js Admin is a schema based admin interface for Dito.js Server, featuring auto-generated views and forms and built with Vue.js",
6
6
  "repository": "https://github.com/ditojs/dito/tree/master/packages/admin",
@@ -82,7 +82,7 @@
82
82
  "vite": "^4.3.1"
83
83
  },
84
84
  "types": "types",
85
- "gitHead": "e79299ffdc4c7d26653f609bff4eb6d5df0ab07e",
85
+ "gitHead": "4e2bf053a5afb23ed84e71775aa692c033b617c6",
86
86
  "scripts": {
87
87
  "build": "vite build",
88
88
  "watch": "yarn build --mode 'development' --watch",
@@ -211,6 +211,13 @@ function getComponentsForFilter(schema, name) {
211
211
  }
212
212
 
213
213
  function formatFiltersData(schema, data) {
214
+ console.log(
215
+ 'formatFiltersData()',
216
+ {
217
+ data: JSON.stringify(data),
218
+ schema: JSON.stringify(Object.keys(schema.components || {}))
219
+ }
220
+ )
214
221
  const filters = []
215
222
  for (const name in data) {
216
223
  const entry = data[name]