summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jschatz1@gmail.com>2016-03-24 14:33:00 +0000
committerJacob Schatz <jschatz1@gmail.com>2016-03-24 14:33:00 +0000
commitc87adc4e4db8a466764a0a6f011bb3ef798fa59a (patch)
tree100836df63002549b90eae4616f60ce794c33774
parentf565e126d2f7d58d5b0435f324a4ea8081b6c5cb (diff)
parent4d7671e74d04879908b9bcee26685e2f43284680 (diff)
downloadgitlab-ce-c87adc4e4db8a466764a0a6f011bb3ef798fa59a.tar.gz
Merge branch 'sidebar-bold-fix' into 'master'
Fixed bold in sidebar ![Screen_Shot_2016-03-23_at_12.01.54](/uploads/d50ae3426efcb2436b3debdd80073b2f/Screen_Shot_2016-03-23_at_12.01.54.png) This is to go with https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/289 See merge request !3358
-rw-r--r--app/views/shared/issuable/_sidebar.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/issuable/_sidebar.html.haml b/app/views/shared/issuable/_sidebar.html.haml
index 5b2772de3f1..0e20e86356d 100644
--- a/app/views/shared/issuable/_sidebar.html.haml
+++ b/app/views/shared/issuable/_sidebar.html.haml
@@ -77,7 +77,7 @@
Labels
- if can?(current_user, :"admin_#{issuable.to_ability_name}", @project)
= link_to 'Edit', '#', class: 'edit-link pull-right'
- .value.issuable-show-labels.hide-collapsed{class: ("has-labels" if issuable.labels.any?)}
+ .value.bold.issuable-show-labels.hide-collapsed{ class: ("has-labels" if issuable.labels.any?) }
- if issuable.labels.any?
- issuable.labels.each do |label|
= link_to_label(label, type: issuable.to_ability_name)