diff options
author | victorwu <victor@gitlab.com> | 2017-01-12 15:57:00 -0500 |
---|---|---|
committer | victorwu <victor@gitlab.com> | 2017-01-17 15:12:13 -0500 |
commit | b6c7e88d3e5e798d6b58c80f213d749871b4b6f4 (patch) | |
tree | b755a591860912b3f10faabc2e99ab65e6098502 /app/views/projects/commits | |
parent | e2f0b83061df3b19b683b67d142acea65d5df0fd (diff) | |
download | gitlab-ce-b6c7e88d3e5e798d6b58c80f213d749871b4b6f4.tar.gz |
Update clipboard_button text: Copy commit SHA to clipboardclipboard-button-commit-sha
Diffstat (limited to 'app/views/projects/commits')
-rw-r--r-- | app/views/projects/commits/_commit.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/commits/_commit.html.haml b/app/views/projects/commits/_commit.html.haml index 3c6c50dce3c..002e3d345dc 100644 --- a/app/views/projects/commits/_commit.html.haml +++ b/app/views/projects/commits/_commit.html.haml @@ -36,6 +36,6 @@ .table-list-cell.commit-actions.hidden-xs - if commit.status(ref) = render_commit_status(commit, ref: ref) - = clipboard_button(clipboard_text: commit.id) + = clipboard_button(clipboard_text: commit.id, title: "Copy commit SHA to clipboard") = link_to commit.short_id, namespace_project_commit_path(project.namespace, project, commit), class: "commit-short-id btn btn-transparent" = link_to_browse_code(project, commit) |