Fixed series editor

This commit is contained in:
Mark McDowall 2013-12-13 00:06:56 -08:00
parent 7dc641b3a9
commit 96868d088f
3 changed files with 8 additions and 2 deletions

View File

@ -8,8 +8,11 @@ define(
className : 'season-folder-cell', className : 'season-folder-cell',
render: function () { render: function () {
var seasonFolder = this.model.get('seasonFolder'); this.$el.empty();
var seasonFolder = this.model.get(this.column.get('name'));
this.$el.html(seasonFolder.toString()); this.$el.html(seasonFolder.toString());
return this; return this;
} }
}); });

View File

@ -94,6 +94,8 @@ define(
model.set('rootFolderPath', rootFolderPath.get('path')); model.set('rootFolderPath', rootFolderPath.get('path'));
} }
model.edited = true;
}); });
SeriesCollection.save(); SeriesCollection.save();
@ -150,6 +152,7 @@ define(
SeriesCollection.each(function (model) { SeriesCollection.each(function (model) {
model.trigger('backgrid:select', model, false); model.trigger('backgrid:select', model, false);
model.edited = false;
}); });
} }
}); });

View File

@ -68,7 +68,7 @@ define(
cell : QualityProfileCell cell : QualityProfileCell
}, },
{ {
name : 'monitored', name : 'seasonFolder',
label: 'Season Folder', label: 'Season Folder',
cell : SeasonFolderCell cell : SeasonFolderCell
}, },