summaryrefslogtreecommitdiff
path: root/app/views/shared
diff options
context:
space:
mode:
authorOswaldo Ferreira <oswaldo@gitlab.com>2018-08-07 17:29:06 +0000
committerPhil Hughes <me@iamphill.com>2018-08-07 17:29:06 +0000
commitddb14e4098c9b16023cdd25743cb2dfb52481e5a (patch)
tree8e05a389dacf30ec13eb59e975e0c3dfff79003f /app/views/shared
parent21c18070283041fb016777493d61b42edac600e5 (diff)
downloadgitlab-ce-ddb14e4098c9b16023cdd25743cb2dfb52481e5a.tar.gz
Backport issue board milestone lists EE changes
Diffstat (limited to 'app/views/shared')
-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 b35877e5518..e26f5260e5b 100644
--- a/app/views/shared/boards/components/_board.html.haml
+++ b/app/views/shared/boards/components/_board.html.haml
@@ -6,12 +6,13 @@
%i.fa.fa-fw.board-title-expandable-toggle{ "v-if": "list.isExpandable",
":class": "{ \"fa-caret-down\": list.isExpanded, \"fa-caret-right\": !list.isExpanded }",
"aria-hidden": "true" }
+ = render_if_exists "shared/boards/components/list_milestone"
%a.user-avatar-link.js-no-trigger{ "v-if": "list.type === \"assignee\"", ":href": "list.assignee.path" }
-# haml-lint:disable AltText
%img.avatar.s20.has-tooltip{ height: "20", width: "20", ":src": "list.assignee.avatar", ":alt": "list.assignee.name" }
- %span.board-title-text.has-tooltip{ "v-if": "list.type !== \"label\"",
+ %span.board-title-text.has-tooltip.block-truncated{ "v-if": "list.type !== \"label\"",
":title" => '((list.label && list.label.description) || list.title || "")', data: { container: "body" } }
{{ list.title }}