mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
make year nullable, and rmember the profileid
This commit is contained in:
parent
8274cc016f
commit
8a0820ad1e
3 changed files with 7 additions and 3 deletions
|
@ -15,7 +15,7 @@ namespace NzbDrone.Core.NetImport.Trakt
|
|||
public class Movie
|
||||
{
|
||||
public string title { get; set; }
|
||||
public int year { get; set; }
|
||||
public int? year { get; set; }
|
||||
public Ids ids { get; set; }
|
||||
}
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ var view = Marionette.ItemView.extend({
|
|||
events : {
|
||||
'click .x-back' : '_back',
|
||||
'click .x-captcha-refresh' : '_onRefreshCaptcha',
|
||||
'change .x-root-folder' : '_rootFolderChanged',
|
||||
'change .x-root-folder' : '_rootFolderChanged',
|
||||
},
|
||||
|
||||
_deleteView : DeleteView,
|
||||
|
|
|
@ -66,7 +66,11 @@
|
|||
<label class="col-sm-3 control-label">Quality Profile</label>
|
||||
|
||||
<div class="col-sm-5">
|
||||
{{> ProfileSelectionPartial profiles}}
|
||||
<select class="form-control x-profile" id="inputProfile" name="profileId">
|
||||
{{#each profiles}}
|
||||
<option value="{{id}}">{{name}}</option>
|
||||
{{/each}}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue