mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Host Management and User Management Pages: Reorder tables to ascending order (#1471)
This commit is contained in:
parent
3478e2759d
commit
97e7dadcd1
3 changed files with 3 additions and 2 deletions
1
changes/issue-1447-tables-ascending-order
Normal file
1
changes/issue-1447-tables-ascending-order
Normal file
|
|
@ -0,0 +1 @@
|
|||
* Reorder hosts and user UI tables in ascending order (A-Z)
|
||||
|
|
@ -577,7 +577,7 @@ export class UserManagementPage extends Component {
|
|||
data={tableData}
|
||||
isLoading={loadingTableData}
|
||||
defaultSortHeader={"name"}
|
||||
defaultSortDirection={"desc"}
|
||||
defaultSortDirection={"asc"}
|
||||
inputPlaceHolder={"Search"}
|
||||
actionButtonText={"Create user"}
|
||||
onActionButtonClick={toggleCreateUserModal}
|
||||
|
|
|
|||
|
|
@ -659,7 +659,7 @@ export class ManageHostsPage extends PureComponent {
|
|||
data={hosts}
|
||||
isLoading={loadingHosts}
|
||||
defaultSortHeader={"hostname"}
|
||||
defaultSortDirection={"desc"}
|
||||
defaultSortDirection={"asc"}
|
||||
actionButtonText={"Edit columns"}
|
||||
actionButtonIcon={EditColumnsIcon}
|
||||
actionButtonVariant={"text-icon"}
|
||||
|
|
|
|||
Loading…
Reference in a new issue