Skip to content

Commit

Permalink
Merge pull request #50 from lotrekagency/hotfix/savecontinue
Browse files Browse the repository at this point in the history
Fixed model object problem after save and continue action.
  • Loading branch information
bnznamco authored Sep 30, 2023
2 parents 96f2ab5 + 59a27cf commit ecc7899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@mapomodule/uikit/components/Detail/Detail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ export default {
this.$refs.form?.resetValidation();
this.apiSendPayload()
.then((resp) => {
this.model = resp;
Object.assign(this.model, resp);
this.modelBkp = deepClone(this.model);
this.$mapo.$snack.open({
message: this.isNew
Expand Down

0 comments on commit ecc7899

Please sign in to comment.