diff options
author | Jason Blanchard <jas.blanchard@gmail.com> | 2015-03-02 18:47:51 -0500 |
---|---|---|
committer | Jason Blanchard <jas.blanchard@gmail.com> | 2015-04-14 09:17:57 -0400 |
commit | f543f1c3dd3d4b75952be85e4e763a099acbb3d6 (patch) | |
tree | e1e4978c859e2340210b1ab2b292c8ff4658bcc6 /app | |
parent | bf7932bd06e45f82c7aa80373aa3aa1bf52d4d88 (diff) | |
download | gitlab-ce-f543f1c3dd3d4b75952be85e4e763a099acbb3d6.tar.gz |
Remove truncation from issue titles on milestone page
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/milestones/_issue.html.haml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/projects/milestones/_issue.html.haml b/app/views/projects/milestones/_issue.html.haml index 9f164d44f26..88fccfe4981 100644 --- a/app/views/projects/milestones/_issue.html.haml +++ b/app/views/projects/milestones/_issue.html.haml @@ -1,9 +1,9 @@ %li{ id: dom_id(issue, 'sortable'), class: 'issue-row', 'data-iid' => issue.iid, 'data-url' => issue_path(issue) } - %span.str-truncated - = link_to [@project.namespace.becomes(Namespace), @project, issue] do - %span.cgray ##{issue.iid} - = link_to_gfm issue.title, [@project.namespace.becomes(Namespace), @project, issue], title: issue.title .pull-right.assignee-icon - if issue.assignee = image_tag avatar_icon(issue.assignee.email, 16), class: "avatar s16", alt: '' + %span + = link_to [@project.namespace.becomes(Namespace), @project, issue] do + %span.cgray ##{issue.iid} + = link_to_gfm issue.title, [@project.namespace.becomes(Namespace), @project, issue], title: issue.title |