Fix expression orderbys not reflecting in web UI.
selected_column needs to be the expression since that's what comes back from the normalizer.
This commit is contained in:
parent
b2290d030a
commit
4a1aad4622
1 changed files with 10 additions and 9 deletions
|
@ -170,15 +170,16 @@
|
||||||
{% macro create_orderby_li(selected_column, selected_sorter) %}
|
{% macro create_orderby_li(selected_column, selected_sorter) %}
|
||||||
<li class="search_builder_orderby_li">
|
<li class="search_builder_orderby_li">
|
||||||
<select onchange="return orderby_hide_direction_hook(event);">
|
<select onchange="return orderby_hide_direction_hook(event);">
|
||||||
<option value="created" {{"selected" if selected_column=="created" else ""}} >Creation date</option>
|
<option value="created" {{"selected" if selected_column=="created" else ""}}>Creation date</option>
|
||||||
<option value="area" {{"selected" if selected_column=="area" else ""}} >Area</option>
|
<option value="area" {{"selected" if selected_column=="(width * height)" else ""}}>Area</option>
|
||||||
<option value="width" {{"selected" if selected_column=="width" else ""}} >Width</option>
|
<option value="width" {{"selected" if selected_column=="width" else ""}}>Width</option>
|
||||||
<option value="height" {{"selected" if selected_column=="height" else ""}} >Height</option>
|
<option value="height" {{"selected" if selected_column=="height" else ""}}>Height</option>
|
||||||
<option value="ratio" {{"selected" if selected_column=="ratio" else ""}} >Aspect Ratio</option>
|
<option value="ratio" {{"selected" if selected_column=="(width / height)" else ""}}>Aspect Ratio</option>
|
||||||
<option value="bytes" {{"selected" if selected_column=="bytes" else ""}} >File size</option>
|
<option value="bytes" {{"selected" if selected_column=="bytes" else ""}}>File size</option>
|
||||||
<option value="duration" {{"selected" if selected_column=="duration" else ""}} >Duration</option>
|
<option value="duration" {{"selected" if selected_column=="duration" else ""}}>Duration</option>
|
||||||
<option value="tagged_at" {{"selected" if selected_column=="tagged_at" else ""}} >Recently tagged</option>
|
<option value="bitrate" {{"selected" if selected_column=="((bytes / 128) / duration)" else ""}}>Bitrate</option>
|
||||||
<option value="random" {{"selected" if selected_column=="random" else ""}} >Random</option>
|
<option value="tagged_at" {{"selected" if selected_column=="tagged_at" else ""}}>Recently tagged</option>
|
||||||
|
<option value="random" {{"selected" if selected_column=="random" else ""}}>Random</option>
|
||||||
</select>
|
</select>
|
||||||
<select {% if selected_column=="random" %}class="hidden"{% endif %}>
|
<select {% if selected_column=="random" %}class="hidden"{% endif %}>
|
||||||
<option value="desc" {{"selected" if selected_sorter=="desc" else ""}} >Descending</option>
|
<option value="desc" {{"selected" if selected_sorter=="desc" else ""}} >Descending</option>
|
||||||
|
|
Loading…
Reference in a new issue