diff options
author | Darby <darbsies@gmail.com> | 2015-06-24 11:48:04 -0700 |
---|---|---|
committer | Darby <darbsies@gmail.com> | 2015-06-24 11:48:04 -0700 |
commit | e94e23617aa912eeb5fb2ea5289f1038b1f43246 (patch) | |
tree | 161dea4243d65063730a34194fbc75490de1c4be /app/views | |
parent | c465af093096990ee42b3021fce157d02b8864cb (diff) | |
download | gitlab-ce-e94e23617aa912eeb5fb2ea5289f1038b1f43246.tar.gz |
Removed the icons from the New Issue and New Project buttonsproject_icon_removal
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/projects/_aside.html.haml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/views/projects/_aside.html.haml b/app/views/projects/_aside.html.haml index c9c17110d2b..86a807a0cae 100644 --- a/app/views/projects/_aside.html.haml +++ b/app/views/projects/_aside.html.haml @@ -24,12 +24,10 @@ .actions - if can? current_user, :write_issue, @project = link_to url_for_new_issue(@project, only_path: true), title: "New Issue", class: 'btn btn-sm append-right-10' do - = icon("exclamation-circle fw") New Issue - if can? current_user, :write_merge_request, @project = link_to new_namespace_project_merge_request_path(@project.namespace, @project), class: "btn btn-sm", title: "New Merge Request" do - = icon("plus fw") New Merge Request - if forked_from_project = @project.forked_from_project |