summaryrefslogtreecommitdiff
path: root/app/views/projects/labels/index.html.haml
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-09-20 13:54:29 -0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-10-19 14:58:24 -0200
commit2910896b53f107558904e228340009bb9fccca4e (patch)
tree7327d33719f2cf21fa88627fcbcbc507c34ea5cb /app/views/projects/labels/index.html.haml
parent1c73d302e2ce5a27aba7171af741b3590d48aba9 (diff)
downloadgitlab-ce-2910896b53f107558904e228340009bb9fccca4e.tar.gz
Remove duplication between global and the regular label partials
Diffstat (limited to 'app/views/projects/labels/index.html.haml')
-rw-r--r--app/views/projects/labels/index.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/projects/labels/index.html.haml b/app/views/projects/labels/index.html.haml
index 05282338493..8e6f84fc430 100644
--- a/app/views/projects/labels/index.html.haml
+++ b/app/views/projects/labels/index.html.haml
@@ -23,7 +23,7 @@
%ul.content-list.manage-labels-list.js-prioritized-labels{ "data-url" => set_priorities_namespace_project_labels_path(@project.namespace, @project) }
%p.empty-message{ class: ('hidden' unless @prioritized_labels.empty?) } No prioritized labels yet
- if @prioritized_labels.present?
- = render partial: 'label', collection: @prioritized_labels, as: :label
+ = render partial: 'shared/label', collection: @prioritized_labels, as: :label
.group-labels{ class: ('hide' if hide || @project.group.blank?) }
%h5
@@ -32,7 +32,7 @@
%ul.content-list.manage-labels-list.js-group-labels
%p.empty-message{ class: ('hidden' unless @group_labels.empty?) } No group labels
- if @group_labels.present?
- = render partial: 'label', collection: @group_labels, as: :label
+ = render partial: 'shared/label', collection: @group_labels, as: :label
.project-labels
%h5{ class: ('hide' if hide) }
@@ -41,7 +41,7 @@
%ul.content-list.manage-labels-list.js-project-labels
%p.empty-message{ class: ('hidden' unless @project_labels.empty?) } No project labels
- if @project_labels.present?
- = render @project_labels
+ = render partial: 'shared/label', collection: @project_labels, as: :label
= paginate @project_labels, theme: 'gitlab'
- else
.nothing-here-block