mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-25 22:59:10 -04:00
f5d46ffcd2
New: Update log files are available in the UI Fixed: UI error after clearing log files
18 lines
432 B
JavaScript
18 lines
432 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'../../../Cells/NzbDroneCell'
|
|
], function (NzbDroneCell) {
|
|
return NzbDroneCell.extend({
|
|
|
|
className: 'download-log-cell',
|
|
|
|
render: function () {
|
|
this.$el.empty();
|
|
this.$el.html('<a href="{0}" class="no-router" target="_blank">Download</a>'.format(this.cellValue));
|
|
|
|
return this;
|
|
}
|
|
});
|
|
});
|