diff options
author | Jedidiah <hello@jedidiah.eu> | 2017-09-08 13:40:20 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-09-08 13:40:20 +0000 |
commit | a8457e3c63092264c8922e13214e1a75ee3cd7f7 (patch) | |
tree | c34789df48443c6bb6d17a01355d9cbe8a4a9162 /app | |
parent | 782e04d2c93acbe5a57cbfaa1b6b45a7c7ad8fff (diff) | |
download | gitlab-ce-a8457e3c63092264c8922e13214e1a75ee3cd7f7.tar.gz |
Fix tooltip width on collapsed issue board column titles
Diffstat (limited to 'app')
-rw-r--r-- | app/views/shared/boards/components/_board.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/boards/components/_board.html.haml b/app/views/shared/boards/components/_board.html.haml index ce0aa72ab00..c5a8b32c772 100644 --- a/app/views/shared/boards/components/_board.html.haml +++ b/app/views/shared/boards/components/_board.html.haml @@ -8,7 +8,7 @@ "aria-hidden": "true" } %span.board-title-text.has-tooltip{ "v-if": "list.type !== \"label\"", - ":title" => '(list.label ? list.label.description : "")' } + ":title" => '(list.label ? list.label.description : "")', data: { container: "body" } } {{ list.title }} %span.has-tooltip{ "v-if": "list.type === \"label\"", |