Skip to content

Commit bd38830

Browse files
committed
fix merge
1 parent ec6b6da commit bd38830

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

resources/js/form/components/Form.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
show_command_key: parentCommands?.commandContainer === 'show' ? props.form.commandKey : null,
9393
}), data)
9494
.then(response => {
95-
props.form.data = merge({}, props.form.data, response.data.form.data);
95+
merge(props.form.data, response.data.form.data);
9696
});
9797
}, 200);
9898

0 commit comments

Comments
 (0)