should be integer, not string value (top 10 20 golfer)
This commit is contained in:
parent
19b0202c9e
commit
0b5c1a85b5
@ -6236,8 +6236,8 @@
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<select id="golf-ranking-number" class="form-select">
|
||||
<option {%if team_stats.top20 == '10' %} selected {% endif %}>Top 10</option>
|
||||
<option {%if team_stats.top20 == '20' %} selected {% endif %}>Top 20</option>
|
||||
<option {%if team_stats.top20 == 10 %} selected {% endif %}>Top 10</option>
|
||||
<option {%if team_stats.top20 == 20 %} selected {% endif %}>Top 20</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
|
Loading…
Reference in New Issue
Block a user