1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

Patch/more updates (#1009)

* add downloaded quality to cut off

* set profile to 1 on model too

* get the lowest year in release dates
This commit is contained in:
Devin Buhl
2017-03-04 13:25:04 -05:00
committed by GitHub
parent 5cace1d857
commit 83560ad937
3 changed files with 25 additions and 3 deletions
@@ -28,8 +28,12 @@ module.exports = TemplatedCell.extend({
if(ProfileCollection.get(this.defaultProfile))
{
this.profile = this.defaultProfile;
this.$(".x-profile").val(this.defaultProfile);//this.ui.profile.val(this.defaultProfile);
this.model.set("profileId", this.defaultProfile)
this.$(".x-profile").val(this.defaultProfile);
this.model.set("profileId", this.defaultProfile);
} else {
this.profile = 1;
this.$(".x-profile").val(1);
this.model.set("profileId", 1);
}
this.cellValue = ProfileCollection;