Skip to content

Commit

Permalink
fix deletetion/undeletion reactivity with FormDisplay data input
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed Oct 19, 2023
1 parent cf782d2 commit d44934f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Form/FormDisplay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default {
visitInputs(this.formInputs, (input, name) => {
const newValue = newAttributes[name];
if (newValue != undefined) {
input.attributes = newValue;
Vue.set(input, "attributes", newValue);
}
});
this.onChangeForm();
Expand Down

0 comments on commit d44934f

Please sign in to comment.