Commit 1c543bdfa8cb5698d173da57b055fd3006e591dc
1 parent
32abaa33
Exists in
master
and in
4 other branches
restored sortable ability
Showing
2 changed files
with
6 additions
and
4 deletions
Show diff stats
app/helpers/issues_helper.rb
app/views/issues/_show.html.haml
1 | 1 | %tr{ :id => dom_id(issue), :class => "issue #{issue.critical ? "critical" : ""}", :url => project_issue_path(@project, issue) } |
2 | - -#- if can?(current_user, :admin_issue, @project) && (!params[:f] || params[:f] == "0") | |
3 | - %td | |
4 | - = image_tag "move.png" , :class => [:handle, :left] | |
5 | 2 | %td |
6 | - %strong.issue-number= "##{issue.id}" | |
3 | + %strong.issue-number{:class => sort_class}= "##{issue.id}" | |
7 | 4 | %span |
8 | 5 | = truncate(html_escape(issue.title), :length => fixed_mode? ? 100 : 200) |
9 | 6 | %br | ... | ... |