diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-11-07 14:22:15 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-11-07 14:22:15 +0000 |
commit | 2239816344f01a59aca66bccb326dd7775f3b1b1 (patch) | |
tree | 5f3480d660790395840c9bfe21a39a13ab087986 /app/views | |
parent | 27b99a27acbed62db4d329cf8866cbcdfd0180ca (diff) | |
download | redmine-2239816344f01a59aca66bccb326dd7775f3b1b1.tar.gz redmine-2239816344f01a59aca66bccb326dd7775f3b1b1.zip |
Extract the "Add filter" drop-down from the table (#19097).
git-svn-id: http://svn.redmine.org/redmine/trunk@14831 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/queries/_filters.html.erb | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/app/views/queries/_filters.html.erb b/app/views/queries/_filters.html.erb index ba5d2dbae..13dcc704d 100644 --- a/app/views/queries/_filters.html.erb +++ b/app/views/queries/_filters.html.erb @@ -12,17 +12,13 @@ $(document).ready(function(){ }); <% end %> -<table style="width:100%"> -<tr> -<td> <table id="filters-table"> </table> -</td> -<td class="add-filter"> + +<div class="add-filter"> <%= label_tag('add_filter_select', l(:label_filter_add)) %> <%= select_tag 'add_filter_select', filters_options_for_select(query), :name => nil %> -</td> -</tr> -</table> +</div> + <%= hidden_field_tag 'f[]', '' %> <% include_calendar_headers_tags %> |