mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
11 lines
252 B
JavaScript
11 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;
|
|
}
|
|
});
|