diff options
author | Lukas Eipert <git@leipert.io> | 2018-03-27 16:45:32 +0200 |
---|---|---|
committer | Lukas Eipert <git@leipert.io> | 2018-03-27 16:45:32 +0200 |
commit | 2bc80b03d27acc4f99e60e130e3a6078eca08a43 (patch) | |
tree | bd18380855dc303f52cfdfd6a7e018aec2a5fb78 | |
parent | a2614d8c1802d37109ae13f2fbb97d12ddaa506d (diff) | |
download | gitlab-ce-2bc80b03d27acc4f99e60e130e3a6078eca08a43.tar.gz |
add tooltip to "retry verification"
-rw-r--r-- | app/views/projects/pages_domains/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/pages_domains/show.html.haml b/app/views/projects/pages_domains/show.html.haml index 62377914d18..360c4b923e5 100644 --- a/app/views/projects/pages_domains/show.html.haml +++ b/app/views/projects/pages_domains/show.html.haml @@ -41,7 +41,7 @@ - text, status = @domain.unverified? ? ['Unverified', 'label-danger'] : ['Verified', 'label-success'] .label{ class: status } = text - %button.btn{ type: "submit" } + %button.btn.has-tooltip{ type: "submit", title: _("Retry verification") } = sprite_icon('redo') .input-group = text_field_tag :domain_verification, verification_record, class: "monospace js-select-on-focus form-control", readonly: true |