ywana-core8 0.0.37 → 0.0.38

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.37",
3
+ "version": "0.0.38",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
@@ -32,6 +32,7 @@ export const CreateContentDialog = ({ label, type, value = {}, filter, validator
32
32
  }
33
33
 
34
34
  function filterForm(field, content) {
35
+ console.log('------ filterForm------------', field.id, filter)
35
36
  const visible = field.required === true || field.optional === true
36
37
  return filter ? visible && filter(field, content) : visible
37
38
  }