diff --git a/src/block_manager/view/BlockView.js b/src/block_manager/view/BlockView.js index 9a2da769e..6dc672c7d 100644 --- a/src/block_manager/view/BlockView.js +++ b/src/block_manager/view/BlockView.js @@ -11,11 +11,13 @@ module.exports = Backbone.View.extend({ }, initialize(o, config = {}) { + const { model } = this; this.em = config.em; this.config = config; this.endDrag = this.endDrag.bind(this); this.ppfx = config.pStylePrefix || ''; - this.listenTo(this.model, 'destroy remove', this.remove); + this.listenTo(model, 'destroy remove', this.remove); + this.listenTo(model, 'change', this.render); }, /**