We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec6b6da commit bd38830Copy full SHA for bd38830
1 file changed
resources/js/form/components/Form.vue
@@ -92,7 +92,7 @@
92
show_command_key: parentCommands?.commandContainer === 'show' ? props.form.commandKey : null,
93
}), data)
94
.then(response => {
95
- props.form.data = merge({}, props.form.data, response.data.form.data);
+ merge(props.form.data, response.data.form.data);
96
});
97
}, 200);
98
0 commit comments