summaryrefslogtreecommitdiff
path: root/app/views/shared/_label_row.html.haml
diff options
context:
space:
mode:
authorTap <visibletrap@gmail.com>2016-02-19 13:34:45 +0800
committerTap <visibletrap@gmail.com>2016-02-19 13:50:56 +0800
commitc48ac79c18dfe85d6e3907b3006b61238d8900a4 (patch)
tree88dca10ce47c9db891683427d4e1192fd7d2c67a /app/views/shared/_label_row.html.haml
parent44a9e260490c8905a15515b70a63425163b3fb67 (diff)
downloadgitlab-ce-c48ac79c18dfe85d6e3907b3006b61238d8900a4.tar.gz
Pull right side of label row out
Diffstat (limited to 'app/views/shared/_label_row.html.haml')
-rw-r--r--app/views/shared/_label_row.html.haml11
1 files changed, 1 insertions, 10 deletions
diff --git a/app/views/shared/_label_row.html.haml b/app/views/shared/_label_row.html.haml
index ca74cc3977b..8134b15d245 100644
--- a/app/views/shared/_label_row.html.haml
+++ b/app/views/shared/_label_row.html.haml
@@ -1,13 +1,4 @@
-.label-row
+%span.label-row
= link_to_label(label)
%span.prepend-left-10
= markdown(label.description, pipeline: :single_line)
-
- .pull-right
- %strong.append-right-20
- = link_to_label(label) do
- = pluralize label.open_issues_count, 'open issue'
-
- - if defined?(editable) && editable && can?(current_user, :admin_label, @project)
- = link_to 'Edit', edit_namespace_project_label_path(@project.namespace, @project, label), class: 'btn btn-sm'
- = link_to 'Delete', namespace_project_label_path(@project.namespace, @project, label), class: 'btn btn-sm btn-remove remove-row', method: :delete, remote: true, data: {confirm: "Remove this label? Are you sure?"}