mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
10 lines
345 B
JavaScript
10 lines
345 B
JavaScript
var NzbDroneCell = require('../../../Cells/NzbDroneCell');
|
|
|
|
module.exports = NzbDroneCell.extend({
|
|
className : 'log-level-cell',
|
|
render : function(){
|
|
var level = this._getValue();
|
|
this.$el.html('<i class="icon-nd-health-{0}" title="{1}"/>'.format(this._getValue().toLowerCase(), level));
|
|
return this;
|
|
}
|
|
}); |