summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-05-07 17:50:51 +0000
committerFilipa Lacerda <filipa@gitlab.com>2018-05-07 17:50:51 +0000
commit7fd5d950659f7073d988d87a0c1163e1eb3a7955 (patch)
treea617e9058bd360745a35ce403ee98277b9ec972f /app
parentecc821a981984b8c1c7b29deab7c98a6958f4534 (diff)
parentf08f55093b906f98089ebf4af320a37e37101972 (diff)
downloadgitlab-ce-7fd5d950659f7073d988d87a0c1163e1eb3a7955.tar.gz
Merge branch '36983-osw-heading-labels-color-fix' into 'master'
Resolve "Issue Boards List Heading Label chooses Wrong Text Color" Closes #36983 See merge request gitlab-org/gitlab-ce!18786
Diffstat (limited to 'app')
-rw-r--r--app/views/shared/boards/components/_board.html.haml3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/shared/boards/components/_board.html.haml b/app/views/shared/boards/components/_board.html.haml
index 149bf8da4b9..4bff6468bb0 100644
--- a/app/views/shared/boards/components/_board.html.haml
+++ b/app/views/shared/boards/components/_board.html.haml
@@ -15,8 +15,9 @@
":title" => '(list.label ? list.label.description : "")',
data: { container: "body", placement: "bottom" },
class: "label color-label title board-title-text",
- ":style" => "{ backgroundColor: (list.label && list.label.color ? list.label.color : null), color: (list.label && list.label.color ? list.label.text_color : \"#2e2e2e\") }" }
+ ":style" => "{ backgroundColor: (list.label && list.label.color ? list.label.color : null), color: (list.label && list.label.text_color ? list.label.text_color : \"#2e2e2e\") }" }
{{ list.title }}
+
- if can?(current_user, :admin_list, current_board_parent)
%board-delete{ "inline-template" => true,
":list" => "list",