diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-03 08:12:43 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-03 08:12:43 +0000 |
commit | 8631b6a258f87d4239904bfae8fad0869127685e (patch) | |
tree | b92a24c095c2752bafe32788f99e2249f10add8b /app/views | |
parent | 79aac2c128e0c2fa8fd657af273fbd219002f39c (diff) | |
parent | e860dedd1c9c64702ce7ca9e475cfe1c3242f17b (diff) | |
download | gitlab-ce-8631b6a258f87d4239904bfae8fad0869127685e.tar.gz |
Merge branch 'rs-issue-1022' into 'master'
Push event: Nest link in strong tag, not vice-versa
Closes #1022
See merge request !755
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/events/event/_push.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/events/event/_push.html.haml b/app/views/events/event/_push.html.haml index 1da702be384..34a7c00dc43 100644 --- a/app/views/events/event/_push.html.haml +++ b/app/views/events/event/_push.html.haml @@ -4,8 +4,8 @@ - if event.rm_ref? %strong= event.ref_name - else - = link_to namespace_project_commits_path(event.project.namespace, event.project, event.ref_name) do - %strong= event.ref_name + %strong + = link_to event.ref_name, namespace_project_commits_path(event.project.namespace, event.project, event.ref_name) at = link_to_project event.project |