Improved Issues and MR filters
This commit is contained in:
parent
ade80e5c4d
commit
d7c5885c3d
2 changed files with 21 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
= form_tag dashboard_filter_path(entity), method: 'get' do
|
||||
%fieldset.dashboard-search-filter
|
||||
= search_field_tag "search", nil, { placeholder: 'Search', class: 'search-text-input' }
|
||||
= search_field_tag "search", params[:search], { placeholder: 'Search', class: 'search-text-input' }
|
||||
= button_tag type: 'submit', class: 'btn' do
|
||||
%i.icon-search
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
|||
%legend Status:
|
||||
%ul.nav.nav-pills.nav-stacked
|
||||
%li{class: ("active" if !params[:status])}
|
||||
= link_to dashboard_filter_path(entity) do
|
||||
= link_to dashboard_filter_path(entity, status: nil) do
|
||||
Open
|
||||
%li{class: ("active" if params[:status] == 'closed')}
|
||||
= link_to dashboard_filter_path(entity, status: 'closed') do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue