Merge pull request #277 from glyptodon/fix-sort-order

GUAC-1193: Fix the history sort order
This commit is contained in:
James Muehlner
2015-10-16 09:38:55 -07:00

View File

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