mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Sort users alphabetically for planner by user
This commit is contained in:
parent
74531bbae4
commit
ca015e4249
@ -378,7 +378,9 @@ var et2_calendar_planner = et2_calendar_view.extend([et2_IDetachedDOM, et2_IResi
|
||||
}
|
||||
}
|
||||
|
||||
return labels;
|
||||
return labels.sort(function(a,b) {
|
||||
return a.label.localeCompare(b.label);
|
||||
});
|
||||
},
|
||||
// Group the events into the rows
|
||||
group: function(labels, rows, event) {
|
||||
|
Loading…
Reference in New Issue
Block a user