mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
12 lines
345 B
JavaScript
12 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;
|
|
}
|
|
}); |