diff --git a/UI/Cells/NzbDroneCell.js b/UI/Cells/NzbDroneCell.js index c43e6e71a..4f23f251a 100644 --- a/UI/Cells/NzbDroneCell.js +++ b/UI/Cells/NzbDroneCell.js @@ -23,6 +23,14 @@ define( _getValue: function () { + var cellValue = this.column.get('cellValue'); + + if (cellValue) { + if (cellValue === 'this') { + return this.model; + } + } + var name = this.column.get('name'); if (name === 'this') { diff --git a/UI/Series/Index/SeriesIndexLayout.js b/UI/Series/Index/SeriesIndexLayout.js index 7cfb954ad..707f82204 100644 --- a/UI/Series/Index/SeriesIndexLayout.js +++ b/UI/Series/Index/SeriesIndexLayout.js @@ -43,9 +43,10 @@ define( cell : SeriesStatusCell }, { - name : 'this', - label: 'Title', - cell : SeriesTitleCell + name : 'title', + label : 'Title', + cell : SeriesTitleCell, + cellValue: 'this' }, { name : 'seasonCount',