diff options
author | Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | 2016-02-03 09:55:02 +0100 |
---|---|---|
committer | Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | 2016-02-08 08:16:06 +0100 |
commit | d38c17739e99635ee2ee5d82659cc6102431c162 (patch) | |
tree | 5109f3c477d9e5cdc255218f473f11bd39fa622a /app | |
parent | 66fe68ac7c29fedfd000373b99e6f9616d72ff8e (diff) | |
download | gitlab-ce-d38c17739e99635ee2ee5d82659cc6102431c162.tar.gz |
Add a tooltip to the stuck warning build symbol
We want to give people an idea of what is wrong with their build, we do this by
adding a tooltip telling them where they can find more information about their
broken builds.
Fixes #10919
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/commit_statuses/_commit_status.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/commit_statuses/_commit_status.html.haml b/app/views/projects/commit_statuses/_commit_status.html.haml index 2e3c956ddc4..943b025c80f 100644 --- a/app/views/projects/commit_statuses/_commit_status.html.haml +++ b/app/views/projects/commit_statuses/_commit_status.html.haml @@ -15,7 +15,7 @@ %strong ##{commit_status.id} - if commit_status.show_warning? - %i.fa.fa-warning.text-warning + %i.fa.fa-warning.text-warning{data: { toggle: "tooltip" }, title: "This build is stuck, open it to know more"} - if defined?(commit_sha) && commit_sha %td |