Actions
Feature #1880
closedSome Assign To improvements
Start date:
2008-09-10
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Description
I think it would be good if sort by Name users in filters for "Assign To" and context menu "Assign To"
below some changes which I made for this
- Issues controller **************
@assignables = @issue.assignable_users.sort
changed to@assignables = @issue.assignable_users.sort {|a,b| a.name <=> b.name}
- Query.rb **************
user_values += project.users.sort.collect{|s| [s.name, s.id.to_s] }
changed touser_values += project.users.sort {|a,b| a.name <=> b.name}.collect{|s| [s.name, s.id.to_s] }
Related issues
Updated by Jean-Philippe Lang almost 16 years ago
- Category set to UI
- Status changed from New to Closed
- Target version set to 0.8
- Resolution set to Fixed
Fixed in r2010.
Actions