Increased truncation for issue titles on milestone#show
Created by: jasonblanchard
Not sure if this is a problem for anyone else, but I find the 40 character truncation for issue titles on the milestone#show page a bit too short. It makes it difficult to browse and keep track of issues on that page.
I've doubled the character limit to 80 characters. I also re-ordered the title div and the user icon div so that it does not get pushed below the title at the first breakpoint.
3 3 %ul.well-list 4 4 - issues.each do |issue| 5 5 %li 6 = link_to [@project, issue] do 7 %span.badge{class: issue.closed? ? 'badge-important' : 'badge-info'} ##{issue.iid} 8 = link_to_gfm truncate(issue.title, length: 40), [@project, issue] 9 6 - if issue.assignee 10 7 .pull-right 11 8 = image_tag avatar_icon(issue.assignee.email, 16), class: "avatar s16" 9 = link_to [@project, issue] do 10 %span.badge{class: issue.closed? ? 'badge-important' : 'badge-info'} ##{issue.iid} 11 = link_to_gfm truncate(issue.title, length: 80), [@project, issue] Created by: jvanbaarsen
@Razer6 This problem has been solved in
6.5
: https://www.dropbox.com/s/ebg2igrwgrxevpp/Screenshot%202014-01-29%2018.21.22.pngBy Administrator on 2014-01-29T17:21:46 (imported from GitLab project)
Please register or sign in to reply