GUAC-1193: Fix the history sort order - sorting mainly by username for historical records is just silly.

This commit is contained in:
Michael Jumper
2015-10-15 16:56:46 -07:00
parent 74121cb796
commit 404a9ee77d

View File

@@ -81,9 +81,9 @@ angular.module('settings').directive('guacSettingsConnectionHistory', [function
* @type SortOrder
*/
$scope.order = new SortOrder([
'-startDate',
'-endDate',
'username',
'startDate',
'endDate',
'connectionName'
]);