We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22fd990 commit 9e6e70cCopy full SHA for 9e6e70c
src/FormulateGrouping.vue
@@ -7,7 +7,7 @@
7
>
8
<FormulateRepeatableProvider
9
v-for="(item, index) in items"
10
- :key="item.__id"
+ :key="index"
11
:index="index"
12
:context="context"
13
:uuid="item.__id"
src/libs/registry.js
@@ -301,7 +301,7 @@ export function useRegistryMethods (without = []) {
301
},
302
setValues (values) {
303
// Collect all keys, existing and incoming
304
- const keys = Array.from(new Set(Object.keys(values).concat(Object.keys(this.proxy))))
+ const keys = Array.from(new Set(Object.keys(values || {}).concat(Object.keys(this.proxy))))
305
keys.forEach(field => {
306
const input = this.registry.has(field) && this.registry.get(field)
307
let value = values[field]
0 commit comments