fixes nested groups filtering out its parents values (#13158)

This commit is contained in:
Brainslug
2022-05-09 18:42:46 +02:00
committed by GitHub
parent 98f9d5c43d
commit d2ef2080b4

View File

@@ -330,7 +330,7 @@ export default defineComponent({
return field.schema?.is_primary_key || !isDisabled(field);
});
emit('update:modelValue', pick(assign({}, props.modelValue, updates), updatableKeys));
emit('update:modelValue', assign({}, props.modelValue, pick(updates, updatableKeys)));
}
function unsetValue(field: Field) {