mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Default to starting at lowest season above 0
This commit is contained in:
parent
33986a9185
commit
97eb5ffc61
5 changed files with 29 additions and 14 deletions
|
@ -1,4 +1,4 @@
|
|||
<select class="span6 x-root-folder">
|
||||
<select class="span4 x-root-folder">
|
||||
{{#if this}}
|
||||
{{#each this}}
|
||||
<option value="{{id}}">{{path}}</option>
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
<select class="span2 x-starting-season">
|
||||
{{#each this}}
|
||||
{{#if_eq seasonNumber compare="0"}}
|
||||
<option value="{{seasonNumber}}">Specials</option>
|
||||
{{else}}
|
||||
<option value="{{seasonNumber}}">Season {{seasonNumber}}</option>
|
||||
{{/if_eq}}
|
||||
{{/each}}
|
||||
</select>
|
Loading…
Add table
Add a link
Reference in a new issue