Skip to content
Snippets Groups Projects

Resolve "DialogObjectForm does not clear fields on successful creation"

1 file
+ 7
3
Compare changes
  • Side-by-side
  • Inline
@@ -226,13 +226,17 @@ export default {
messageKey: snackbarTextKey,
color: "success",
});
this.resetModel();
},
resetModel() {
this.itemModel = JSON.parse(
JSON.stringify(this.isCreate ? this.defaultItem : this.editItem)
);
},
updateModel() {
// Only update the model if the dialog is hidden or has just been mounted
if (this.forceModelItemUpdate || !this.firstInitDone || !this.dialog) {
this.itemModel = JSON.parse(
JSON.stringify(this.isCreate ? this.defaultItem : this.editItem)
);
this.resetModel();
}
},
},
Loading