Seperate AddArtist, Artist. Refactor NavSearch, Artist Editor. Other

Misc UI Fixes
This commit is contained in:
Qstick
2017-05-28 01:01:20 -04:00
parent 775f96c865
commit 2baa1da4b6
102 changed files with 4382 additions and 61 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ module.exports = Backbone.Model.extend({
setAlbumsMonitored : function(albumName) {
_.each(this.get('albums'), function(album) {
if (season.albumName === albumName) {
if (album.albumName === albumName) {
album.monitored = !album.monitored;
}
});