summaryrefslogtreecommitdiff
path: root/app/views/projects/issues
diff options
context:
space:
mode:
authorLuke Bennett <lukeeeebennettplus@gmail.com>2016-05-16 23:01:48 +0100
committerLuke "Jared" Bennett <lbennett@gitlab.com>2016-06-07 22:37:28 +0100
commit200bbbcb6a0d599b033f542c50182356a5eaa933 (patch)
treee47a09218680ff6af3d26cbb6099969b38097898 /app/views/projects/issues
parentfd248392dddcb484fbe21e3cee9d7a64f1e96960 (diff)
downloadgitlab-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/issues')
-rw-r--r--app/views/projects/issues/index.html.haml2
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')