mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-12 22:12:38 +01:00
19 lines
362 B
JavaScript
19 lines
362 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'Cells/NzbDroneCell'
|
|
], function (NzbDroneCell) {
|
|
return NzbDroneCell.extend({
|
|
|
|
className: 'log-filename-cell',
|
|
|
|
render: function () {
|
|
|
|
var filename = this._getValue();
|
|
this.$el.html(filename);
|
|
|
|
return this;
|
|
}
|
|
});
|
|
});
|