Commit fe4601361d0d713451a3ad6c398f45e8c7bd6211
1 parent
6ace422c
Exists in
master
and in
4 other branches
Milestone page: reduce truncate length to prevent issue title overflow
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/projects/milestones/_issues.html.haml
... | ... | @@ -5,7 +5,7 @@ |
5 | 5 | %li |
6 | 6 | = link_to [@project, issue] do |
7 | 7 | %span.badge{class: issue.closed? ? 'badge-important' : 'badge-info'} ##{issue.id} |
8 | - = link_to_gfm truncate(issue.title, length: 60), [@project, issue] | |
8 | + = link_to_gfm truncate(issue.title, length: 40), [@project, issue] | |
9 | 9 | - if issue.assignee |
10 | 10 | .pull-right |
11 | 11 | = image_tag gravatar_icon(issue.assignee.email, 16), class: "avatar s16" | ... | ... |