Skip to content

Commit

Permalink
fix(application): set applicationBody with assign to for deep reactivity
Browse files Browse the repository at this point in the history
  • Loading branch information
leomp12 committed Dec 16, 2019
1 parent 2afd259 commit 1622d1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/js/EcApplication.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export default {
return this.applicationBody
},
set (data) {
this.applicationBody = data
this.applicationBody = Object.assign({}, this.applicationBody, data)
this.isLoaded = true
this.$emit('update:application', data)
}
Expand Down

0 comments on commit 1622d1b

Please # to comment.