mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
episode grid is lining up properly.
This commit is contained in:
@@ -3,6 +3,8 @@
|
||||
define(['app', 'Episode/Layout'], function () {
|
||||
NzbDrone.Series.Details.EpisodeStatusCell = Backgrid.Cell.extend({
|
||||
|
||||
className: 'episode-status-cell',
|
||||
|
||||
events: {
|
||||
'click': 'showDetails'
|
||||
},
|
||||
|
||||
@@ -12,7 +12,9 @@ define(['app', 'Series/Details/EpisodeStatusCell'], function () {
|
||||
{
|
||||
name : 'episodeNumber',
|
||||
label: '#',
|
||||
cell : 'integer'
|
||||
cell : Backgrid.IntegerCell.extend({
|
||||
className: 'episode-number-cell'
|
||||
})
|
||||
},
|
||||
|
||||
{
|
||||
@@ -23,8 +25,9 @@ define(['app', 'Series/Details/EpisodeStatusCell'], function () {
|
||||
{
|
||||
name : 'airDate',
|
||||
label: 'Air Date',
|
||||
cell : 'date'
|
||||
//formatter: new Backgrid.AirDateFormatter()
|
||||
cell : Backgrid.DateCell.extend({
|
||||
className: 'episode-air-date-cell'
|
||||
})
|
||||
} ,
|
||||
{
|
||||
name : 'status',
|
||||
|
||||
Reference in New Issue
Block a user