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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user