mirror of
https://github.com/Radarr/Radarr
synced 2026-02-26 16:42:59 +01:00
14 lines
295 B
JavaScript
14 lines
295 B
JavaScript
var NzbDroneCell = require('./NzbDroneCell');
|
|
|
|
module.exports = NzbDroneCell.extend({
|
|
className : 'extra-extension-cell',
|
|
|
|
render : function() {
|
|
this.$el.empty();
|
|
|
|
var title = this.model.get('extension');
|
|
this.$el.html(title);
|
|
|
|
return this;
|
|
}
|
|
});
|