mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-04-11 10:16:19 +00:00
Fix algorithm sort.
This commit is contained in:
@@ -1141,7 +1141,7 @@ Application.prototype.getAlgorithmNames = function()
|
||||
}
|
||||
|
||||
res.sort(function (a, b) {
|
||||
return a.priority > b.priority;
|
||||
return a.priority - b.priority;
|
||||
});
|
||||
|
||||
return res;
|
||||
|
||||
Reference in New Issue
Block a user