Fixed series editor

This commit is contained in:
Mark McDowall
2013-12-13 00:06:56 -08:00
parent 7dc641b3a9
commit 96868d088f
3 changed files with 8 additions and 2 deletions

View File

@@ -8,8 +8,11 @@ define(
className : 'season-folder-cell',
render: function () {
var seasonFolder = this.model.get('seasonFolder');
this.$el.empty();
var seasonFolder = this.model.get(this.column.get('name'));
this.$el.html(seasonFolder.toString());
return this;
}
});