mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUAC-1138: Filter and sort sessions based on pre-formatted date.
This commit is contained in:
@@ -64,7 +64,7 @@ angular.module('manage').controller('manageSessionsController', ['$scope', '$inj
|
||||
*/
|
||||
$scope.wrapperOrder = new SortOrder([
|
||||
'activeConnection.username',
|
||||
'activeConnection.startDate',
|
||||
'startDate',
|
||||
'activeConnection.remoteHost',
|
||||
'name'
|
||||
]);
|
||||
@@ -76,6 +76,7 @@ angular.module('manage').controller('manageSessionsController', ['$scope', '$inj
|
||||
*/
|
||||
$scope.filteredWrapperProperties = [
|
||||
'activeConnection.username',
|
||||
'startDate',
|
||||
'activeConnection.remoteHost',
|
||||
'name'
|
||||
];
|
||||
|
@@ -49,7 +49,7 @@ THE SOFTWARE.
|
||||
<th guac-sort-order="wrapperOrder" guac-sort-property="'activeConnection.username'">
|
||||
{{'MANAGE_SESSION.TABLE_HEADER_SESSION_USERNAME' | translate}}
|
||||
</th>
|
||||
<th guac-sort-order="wrapperOrder" guac-sort-property="'activeConnection.startDate'">
|
||||
<th guac-sort-order="wrapperOrder" guac-sort-property="'startDate'">
|
||||
{{'MANAGE_SESSION.TABLE_HEADER_SESSION_STARTDATE' | translate}}
|
||||
</th>
|
||||
<th guac-sort-order="wrapperOrder" guac-sort-property="'activeConnection.remoteHost'">
|
||||
|
Reference in New Issue
Block a user