diff options
-rw-r--r-- | templates/beerpage.jinja2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/beerpage.jinja2 b/templates/beerpage.jinja2 index ed2bdb4..dc51718 100644 --- a/templates/beerpage.jinja2 +++ b/templates/beerpage.jinja2 @@ -87,7 +87,7 @@ function drawAnnotations() { <select name="direction" class="form-control"> <option {% if direction == '3' %}selected{% endif %} value="3">Much more</option> <option {% if direction == '2' %}selected{% endif %} value="2">More</option> - <option {% if direction == '1' %}selected{% endif %} value="1">Little more</option> + <option {% if direction == '1' or not direction%}selected{% endif %} value="1">Little more</option> <option {% if direction == '-1' %}selected{% endif %} value="-1">Little less</option> <option {% if direction == '-2' %}selected{% endif %} value="-2">Less</option> <option {% if direction == '-3' %}selected{% endif %} value="-3">Much less</option> |