mirror of
https://github.com/Radarr/Radarr
synced 2026-01-02 13:47:41 +01:00
10 lines
252 B
JavaScript
10 lines
252 B
JavaScript
var TemplatedCell = require('./TemplatedCell');
|
|
|
|
module.exports = TemplatedCell.extend({
|
|
className : 'movie-title-cell',
|
|
template : 'Cells/MovieDownloadStatusTemplate',
|
|
sortKey : function(model) {
|
|
debugger;
|
|
return 0;
|
|
}
|
|
});
|