summaryrefslogtreecommitdiff
path: root/app/views/projects
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-06-01 16:03:48 +0100
committerPhil Hughes <me@iamphill.com>2017-06-01 16:03:48 +0100
commitb6e39b02d5985eb2bda8b1f93e05c6c5281b2f3a (patch)
tree7288191e8582376c4f9f860032f4b3c325961f2e /app/views/projects
parent8f5da962a363389c606d1f8427fcc36286ea2285 (diff)
downloadgitlab-ce-b6e39b02d5985eb2bda8b1f93e05c6c5281b2f3a.tar.gz
changed the icon for the collapsed backlog list
[ci skip]
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/boards/components/_board.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/boards/components/_board.html.haml b/app/views/projects/boards/components/_board.html.haml
index 37939e6266d..55c4d51be14 100644
--- a/app/views/projects/boards/components/_board.html.haml
+++ b/app/views/projects/boards/components/_board.html.haml
@@ -4,7 +4,7 @@
%header.board-header{ ":class" => '{ "has-border": list.label && list.label.color }', ":style" => "{ borderTopColor: (list.label && list.label.color ? list.label.color : null) }", "@click" => "toggleExpanded($event)" }
%h3.board-title.js-board-handle{ ":class" => '{ "user-can-drag": (!disabled && !list.preset) }' }
%i.fa.fa-fw.board-title-expandable-toggle{ "v-if": "list.isExpandable",
- ":class": "{ \"fa-caret-down\": list.isExpanded, \"fa-caret-left\": !list.isExpanded }",
+ ":class": "{ \"fa-caret-down\": list.isExpanded, \"fa-caret-right\": !list.isExpanded && list.position === -1, \"fa-caret-left\": !list.isExpanded && list.position !== -1 }",
"aria-hidden": "true" }
%span.has-tooltip{ ":title" => '(list.label ? list.label.description : "")',
data: { container: "body", placement: "bottom" } }