diff --git a/src/UI/Cells/MovieTitleHistoryCell.js b/src/UI/Cells/MovieTitleHistoryCell.js index 3a3d6d927..cf2855f13 100644 --- a/src/UI/Cells/MovieTitleHistoryCell.js +++ b/src/UI/Cells/MovieTitleHistoryCell.js @@ -6,7 +6,7 @@ module.exports = TemplatedCell.extend({ render : function() { - this.$el.html('' + this.model.get("movie").get("title") + ''); //Hack, but somehow handlebar helper does not work. + this.$el.html('' + this.model.get("movie").get("title") + ''); //Hack, but somehow handlebar helper does not work. return this; } });