diff options
author | Luke Bennett <lukeeeebennettplus@gmail.com> | 2016-05-16 23:01:48 +0100 |
---|---|---|
committer | Luke "Jared" Bennett <lbennett@gitlab.com> | 2016-06-07 22:37:28 +0100 |
commit | 200bbbcb6a0d599b033f542c50182356a5eaa933 (patch) | |
tree | e47a09218680ff6af3d26cbb6099969b38097898 /app/views/projects | |
parent | fd248392dddcb484fbe21e3cee9d7a64f1e96960 (diff) | |
download | gitlab-ce-200bbbcb6a0d599b033f542c50182356a5eaa933.tar.gz |
Fixes issue search form hiding when current_user is nil (guest user)
Fixes the bottom margin of .nav-controls > form (issues list search/filter form) so when a guest views on the field on mobile it is not squished against the issues list
Updated CHANGELOG
navigation tabs and navigation filter search will now stay on the same row until there is no space to
Removed unneeded media queries
Diffstat (limited to 'app/views/projects')
-rw-r--r-- | app/views/projects/issues/index.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/issues/index.html.haml b/app/views/projects/issues/index.html.haml index 19a6f4a91f6..95b5dcf0e04 100644 --- a/app/views/projects/issues/index.html.haml +++ b/app/views/projects/issues/index.html.haml @@ -12,7 +12,7 @@ = icon('rss') %span.icon-label Subscribe - = render 'shared/issuable/search_form', path: namespace_project_issues_path(@project.namespace, @project) + = render 'shared/issuable/search_form', path: namespace_project_issues_path(@project.namespace, @project) - if can? current_user, :create_issue, @project = link_to new_namespace_project_issue_path(@project.namespace, @project, issue: { assignee_id: @issuable_finder.assignee.try(:id), milestone_id: @issuable_finder.milestones.try(:first).try(:id) }), class: "btn btn-new", title: "New Issue", id: "new_issue_link" do = icon('plus') |