mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-03-02 02:43:24 +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;
|
|
}
|
|
});
|