summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2018-10-25 19:31:41 +0000
committerDouwe Maan <douwe@gitlab.com>2018-10-25 19:31:41 +0000
commitbf96ec85c736747672fa550707829fef635ddd60 (patch)
tree6e5a1316d52b1e76bae44dde478f2dff5b1dc7d9
parenta97e599a78d3d62c0f29e2a02eec38166714977c (diff)
parentaa73ef5b16851ba69c5198f98683bf1200656bd5 (diff)
downloadgitlab-ce-bf96ec85c736747672fa550707829fef635ddd60.tar.gz
Merge branch 'jramsay-42673-commit-tooltip' into 'master'
Add title to commit links in list view Closes #42673 See merge request gitlab-org/gitlab-ce!22585
-rw-r--r--app/views/projects/tree/_tree_commit_column.html.haml2
-rw-r--r--changelogs/unreleased/jramsay-42673-commit-tooltip.yml5
2 files changed, 6 insertions, 1 deletions
diff --git a/app/views/projects/tree/_tree_commit_column.html.haml b/app/views/projects/tree/_tree_commit_column.html.haml
index 406dccb74fb..e37fd7624be 100644
--- a/app/views/projects/tree/_tree_commit_column.html.haml
+++ b/app/views/projects/tree/_tree_commit_column.html.haml
@@ -1,2 +1,2 @@
%span.str-truncated
- = link_to_html commit.redacted_full_title_html, project_commit_path(@project, commit.id), class: 'tree-commit-link'
+ = link_to_html commit.redacted_full_title_html, project_commit_path(@project, commit.id), title: commit.redacted_full_title_html, class: 'tree-commit-link'
diff --git a/changelogs/unreleased/jramsay-42673-commit-tooltip.yml b/changelogs/unreleased/jramsay-42673-commit-tooltip.yml
new file mode 100644
index 00000000000..083cd1a54a0
--- /dev/null
+++ b/changelogs/unreleased/jramsay-42673-commit-tooltip.yml
@@ -0,0 +1,5 @@
+---
+title: Add commit message to commit tree anchor title
+merge_request: 22585
+author:
+type: fixed