mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 14:55:20 -07:00
add downloaded quality column to movie editor (#738)
This commit is contained in:
parent
0d5d75d6ea
commit
c5bb259555
1 changed files with 6 additions and 0 deletions
|
@ -4,6 +4,7 @@ var Backgrid = require('backgrid');
|
||||||
var EmptyView = require('../Index/EmptyView');
|
var EmptyView = require('../Index/EmptyView');
|
||||||
var MoviesCollection = require('../MoviesCollection');
|
var MoviesCollection = require('../MoviesCollection');
|
||||||
var MovieTitleCell = require('../../Cells/MovieTitleCell');
|
var MovieTitleCell = require('../../Cells/MovieTitleCell');
|
||||||
|
var DownloadedQualityCell = require('../../Cells/DownloadedQualityCell');
|
||||||
var ProfileCell = require('../../Cells/ProfileCell');
|
var ProfileCell = require('../../Cells/ProfileCell');
|
||||||
var SelectAllCell = require('../../Cells/SelectAllCell');
|
var SelectAllCell = require('../../Cells/SelectAllCell');
|
||||||
var ToolbarLayout = require('../../Shared/Toolbar/ToolbarLayout');
|
var ToolbarLayout = require('../../Shared/Toolbar/ToolbarLayout');
|
||||||
|
@ -43,6 +44,11 @@ module.exports = Marionette.Layout.extend({
|
||||||
cell : MovieTitleCell,
|
cell : MovieTitleCell,
|
||||||
cellValue : 'this'
|
cellValue : 'this'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "downloadedQuality",
|
||||||
|
label: "Downloaded",
|
||||||
|
cell: DownloadedQualityCell,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name : 'profileId',
|
name : 'profileId',
|
||||||
label : 'Profile',
|
label : 'Profile',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue