Call sort for array with more than one element only.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10519 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
99662fa18e
commit
81782f2408
|
@ -70,8 +70,8 @@ class QueryCustomFieldColumn < QueryColumn
|
|||
end
|
||||
|
||||
def value(issue)
|
||||
cv = issue.custom_values.select {|v| v.custom_field_id == @cf.id}.collect {|v| @cf.cast_value(v.value)}.sort {|a,b| a.to_s <=> b.to_s}
|
||||
cv.size > 1 ? cv : cv.first
|
||||
cv = issue.custom_values.select {|v| v.custom_field_id == @cf.id}.collect {|v| @cf.cast_value(v.value)}
|
||||
cv.size > 1 ? cv.sort {|a,b| a.to_s <=> b.to_s} : cv.first
|
||||
end
|
||||
|
||||
def css_classes
|
||||
|
|
Loading…
Reference in New Issue