ywana-core8 0.0.858 → 0.0.859

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.858",
3
+ "version": "0.0.859",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -21,7 +21,7 @@ export const DynamicForm = (props) => {
21
21
  const { id, label, type } = field
22
22
  const value = values[id] || field.default
23
23
  return (
24
- <DynamicFormField key={id} field={field} value={value} onChange={change} />
24
+ <DynamicFormField key={`${id}_${value}`} field={field} value={value} onChange={change} />
25
25
  )
26
26
  })}
27
27
  </div>