sort collabs by id

This commit is contained in:
Claudio Barril
2015-04-11 16:09:55 -03:00
parent 74a05cb7db
commit d73ee3b902
2 changed files with 7 additions and 1 deletions

View File

@@ -192,7 +192,7 @@ $(function () {
success:function (data, textStatus, jqXHR) {
// Owner roles is the first in the table ...
var collabs = data.collaborations.sort(function (a, b) {
return a.role <= b.role;
return a.id > b.id;
});
// Add all the columns in the table ...