mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-16 21:15:33 -04:00
* Adding file info tab. Not finished yet. * Adding more media info options. * Deleting files now works. Fixes #127 * Fix button for modifying episode files. * Get Media Info when running DiskScanService.
16 lines
294 B
JavaScript
16 lines
294 B
JavaScript
var NzbDroneCell = require('./NzbDroneCell');
|
|
|
|
module.exports = NzbDroneCell.extend({
|
|
className : 'file-title-cell',
|
|
|
|
render : function() {
|
|
this.$el.empty();
|
|
|
|
var title = this.model.get('relativePath');
|
|
this.$el.html(title);
|
|
|
|
|
|
return this;
|
|
}
|
|
});
|