ywana-core8 0.0.427 → 0.0.428

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.427",
3
+ "version": "0.0.428",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -54,6 +54,8 @@ const FieldViewer = (props) => {
54
54
  return <Property label={label} value={value} />
55
55
  case TYPES.ENTITY:
56
56
  return <EntityViewer field={field} value={value} />
57
+ case TYPES.ARRAY:
58
+ return value.map(v=> <FieldViewer field={field} value={v} />)
57
59
  default:
58
60
  return <div>{label}</div>
59
61
  }
@@ -78,4 +80,4 @@ const EntityViewer = (props) => {
78
80
  </main>
79
81
  </div>
80
82
  )
81
- }
83
+ }