mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 21:51:23 +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([
|
$scope.wrapperOrder = new SortOrder([
|
||||||
'activeConnection.username',
|
'activeConnection.username',
|
||||||
'activeConnection.startDate',
|
'startDate',
|
||||||
'activeConnection.remoteHost',
|
'activeConnection.remoteHost',
|
||||||
'name'
|
'name'
|
||||||
]);
|
]);
|
||||||
@@ -76,6 +76,7 @@ angular.module('manage').controller('manageSessionsController', ['$scope', '$inj
|
|||||||
*/
|
*/
|
||||||
$scope.filteredWrapperProperties = [
|
$scope.filteredWrapperProperties = [
|
||||||
'activeConnection.username',
|
'activeConnection.username',
|
||||||
|
'startDate',
|
||||||
'activeConnection.remoteHost',
|
'activeConnection.remoteHost',
|
||||||
'name'
|
'name'
|
||||||
];
|
];
|
||||||
|
@@ -49,7 +49,7 @@ THE SOFTWARE.
|
|||||||
<th guac-sort-order="wrapperOrder" guac-sort-property="'activeConnection.username'">
|
<th guac-sort-order="wrapperOrder" guac-sort-property="'activeConnection.username'">
|
||||||
{{'MANAGE_SESSION.TABLE_HEADER_SESSION_USERNAME' | translate}}
|
{{'MANAGE_SESSION.TABLE_HEADER_SESSION_USERNAME' | translate}}
|
||||||
</th>
|
</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}}
|
{{'MANAGE_SESSION.TABLE_HEADER_SESSION_STARTDATE' | translate}}
|
||||||
</th>
|
</th>
|
||||||
<th guac-sort-order="wrapperOrder" guac-sort-property="'activeConnection.remoteHost'">
|
<th guac-sort-order="wrapperOrder" guac-sort-property="'activeConnection.remoteHost'">
|
||||||
|
Reference in New Issue
Block a user