mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Seperate AddArtist, Artist. Refactor NavSearch, Artist Editor. Other
Misc UI Fixes
This commit is contained in:
parent
775f96c865
commit
2baa1da4b6
102 changed files with 4382 additions and 61 deletions
14
src/UI/Cells/ArtistFolderCell.js
Normal file
14
src/UI/Cells/ArtistFolderCell.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
var Backgrid = require('backgrid');
|
||||
|
||||
module.exports = Backgrid.Cell.extend({
|
||||
className : 'artist-folder-cell',
|
||||
|
||||
render : function() {
|
||||
this.$el.empty();
|
||||
|
||||
var artistFolder = this.model.get(this.column.get('name'));
|
||||
this.$el.html(artistFolder.toString());
|
||||
|
||||
return this;
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue