Skip to content

Commit

Permalink
fixes bug 887436 - use available versions not submitted versions (whi…
Browse files Browse the repository at this point in the history
…ch happens to fall back to all
  • Loading branch information
rhelmer committed Jun 26, 2013
1 parent ff16695 commit 3590ce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crashstats/crashstats/templates/crashstats/daily.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ <h3><a href="#" id="click_by_os">Crashes per ADU by O/S</a></h3>
<td>
<label class="visually-hidden" for="version">Select Version</label>
<select id="version" name="v">
{% for version in versions|reverse %}
{% for version in available_versions %}
<option value="{{ version }}" {% if version == versions[0] %} selected {% endif %}>{{ version }}</option>
{% endfor %}
</select>
Expand Down

0 comments on commit 3590ce4

Please sign in to comment.