Skip to content

Commit

Permalink
Fix space image will not be refreshed while changed in space details …
Browse files Browse the repository at this point in the history
…actions
  • Loading branch information
JanAckermann committed Mar 7, 2022
1 parent c079a56 commit ffd47be
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,15 @@ export default {
)
}
},
watch: {
'space.spaceImageData': {
handler: function (val) {
if (!val) return
this.loadImageTask.perform(this)
},
deep: true
}
},
mounted() {
this.loadImageTask.perform(this)
},
Expand Down

0 comments on commit ffd47be

Please sign in to comment.