diff options
author | Phil Hughes <me@iamphill.com> | 2016-08-09 16:55:41 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-08-17 17:17:39 +0100 |
commit | 0ba25abb267139031ceac185448d963b8500d4c5 (patch) | |
tree | 04e63f1c6c3d9265bd23baf1afbcf70732642872 | |
parent | 0ee548d3fb4075314a44a315799428c7dbd3f94c (diff) | |
download | gitlab-ce-0ba25abb267139031ceac185448d963b8500d4c5.tar.gz |
Moved label tooltip to have body container
-rw-r--r-- | app/views/projects/boards/components/_card.html.haml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/projects/boards/components/_card.html.haml b/app/views/projects/boards/components/_card.html.haml index 9302d86f730..d6255b35516 100644 --- a/app/views/projects/boards/components/_card.html.haml +++ b/app/views/projects/boards/components/_card.html.haml @@ -19,7 +19,8 @@ type: "button", "@click" => "filterByLabel(label, $event)", ":style" => "{ backgroundColor: label.color, color: label.textColor }", - ":title" => "label.description" } + ":title" => "label.description", + data: { container: 'body' } } {{ label.title }} %a.has-tooltip{ ":href" => "'/u/' + issue.assignee.username", ":title" => "'Assigned to ' + issue.assignee.name", |