diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-09-25 03:06:21 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-09-25 03:06:21 +0000 |
commit | 7bb7a8d529fd1155a35a2e9e9cdddd7953f3776d (patch) | |
tree | e0cedf3ea8732ab14cd918242279619c3c7d7072 /app/helpers | |
parent | 504ab1e32cbd3a529fe61f6c9a30823febce796c (diff) | |
download | gitlab-ce-7bb7a8d529fd1155a35a2e9e9cdddd7953f3776d.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/projects_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/projects_helper.rb b/app/helpers/projects_helper.rb index bf6abdb8c4b..177778a7278 100644 --- a/app/helpers/projects_helper.rb +++ b/app/helpers/projects_helper.rb @@ -76,7 +76,7 @@ module ProjectsHelper link_to(author_html, user_path(author), class: "author-link js-user-link #{"#{opts[:extra_class]}" if opts[:extra_class]} #{"#{opts[:mobile_classes]}" if opts[:mobile_classes]}", data: data_attrs).html_safe else title = opts[:title].sub(":name", sanitize(author.name)) - link_to(author_html, user_path(author), class: "author-link has-tooltip", title: title, data: { container: 'body' }).html_safe + link_to(author_html, user_path(author), class: "author-link has-tooltip", title: title, data: { container: 'body', qa_selector: 'assignee_link' }).html_safe end end |