From 808033a01c9c4073f581a70c037e7044c977a1b2 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Mon, 6 Feb 2017 20:57:53 -0500 Subject: [PATCH] Fixed Movie link in history tab (#637) --- src/UI/Cells/MovieTitleHistoryCell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } });