Fixed Sorting In Wanted and Cutoff (#693)

Devin Buhl 8 years ago committed by GitHub
parent 75436bcce4
commit 1aae3ae2b5

@ -36,10 +36,10 @@ module.exports = Marionette.Layout.extend({
sortable : false
},
{
name : 'this',
label : 'Movie Title',
name : 'title',
label : 'Title',
cell : MovieTitleCell,
sortValue : this.sortTitle
cellValue : 'this',
},
{
name : 'inCinemas',

@ -38,9 +38,10 @@ module.exports = Marionette.Layout.extend({
sortable : false
},
{
name : 'this',
label : 'Movie Title',
cell : MovieTitleCell,
name : 'title',
label : 'Title',
cell : MovieTitleCell,
cellValue : 'this',
},
{
name : 'inCinemas',

Loading…
Cancel
Save