summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/templates
diff options
context:
space:
mode:
authorTim Laszlo <tim.laszlo@gmail.com>2013-03-18 13:12:26 -0500
committerTim Laszlo <tim.laszlo@gmail.com>2013-03-18 13:12:26 -0500
commitc82807da53e2e76d70b0496fb3bcfb476d590968 (patch)
tree2ae2bfe9ffc9ed9d85046702a535db83a55e61ea /src/lib/Bcfg2/Reporting/templates
parent2101d7fcfa20fcb65adfdf4f35896091f0979c23 (diff)
downloadbcfg2-c82807da53e2e76d70b0496fb3bcfb476d590968.tar.gz
bcfg2-c82807da53e2e76d70b0496fb3bcfb476d590968.tar.bz2
bcfg2-c82807da53e2e76d70b0496fb3bcfb476d590968.zip
Fix the group filter dropdown on firefox
Diffstat (limited to 'src/lib/Bcfg2/Reporting/templates')
-rw-r--r--src/lib/Bcfg2/Reporting/templates/widgets/filter_bar.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Reporting/templates/widgets/filter_bar.html b/src/lib/Bcfg2/Reporting/templates/widgets/filter_bar.html
index 759415507..bb4f650d1 100644
--- a/src/lib/Bcfg2/Reporting/templates/widgets/filter_bar.html
+++ b/src/lib/Bcfg2/Reporting/templates/widgets/filter_bar.html
@@ -16,7 +16,7 @@
<label for="id_group">Group filter:</label>
<select id="id_group" name="group" onchange="javascript:url=document.forms['filter_form'].group.value; if(url) { location.href=url }">
{% for group, group_url, selected in groups %}
- <option label="{{group}}" value="{{group_url}}" {% if selected %}selected {% endif %}/>
+ <option value="{{group_url}}" {% if selected %}selected {% endif %}>{{group}}</option>
{% endfor %}
</select>
{% endif %}