diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-10-29 01:14:47 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-10-29 01:14:47 +0000 |
commit | f8c9efdb31af5f02b27a68d2aabc9e18380ae2f8 (patch) | |
tree | 7719b68184f4be4a15bfbb7763b366fed83b7d3a /app/views/issues/index.html.erb | |
parent | fc54fac55621a39e9ca447dc733f6a179fe1ceb8 (diff) | |
download | redmine-f8c9efdb31af5f02b27a68d2aabc9e18380ae2f8.tar.gz redmine-f8c9efdb31af5f02b27a68d2aabc9e18380ae2f8.zip |
[#9489] linked labels to their elements
Contributed by Romano Licker.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7679 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/index.html.erb')
-rw-r--r-- | app/views/issues/index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/index.html.erb b/app/views/issues/index.html.erb index 2fc163e90..a5e657ec1 100644 --- a/app/views/issues/index.html.erb +++ b/app/views/issues/index.html.erb @@ -26,7 +26,7 @@ <td><%= render :partial => 'queries/columns', :locals => {:query => @query} %></td> </tr> <tr> - <td><%= l(:field_group_by) %></td> + <td><label for='group_by'><%= l(:field_group_by) %></label></td> <td><%= select_tag('group_by', options_for_select([[]] + @query.groupable_columns.collect {|c| [c.caption, c.name.to_s]}, @query.group_by)) %></td> </tr> </table> |