mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-08 15:54:51 +00:00
Bugfix sort users by user_id
Users are not sortable by `user_id`. Set `sortable={false}`.
This commit is contained in:
parent
b7c3684b80
commit
5bdfb80db7
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ export const UserList = props => (
|
||||||
>
|
>
|
||||||
<ImageField source="avatar_url" title="displayname" />
|
<ImageField source="avatar_url" title="displayname" />
|
||||||
</ReferenceField>
|
</ReferenceField>
|
||||||
<TextField source="id" />
|
<TextField source="id" sortable={false} />
|
||||||
{/* Hack since the users endpoint does not give displaynames in the list*/}
|
{/* Hack since the users endpoint does not give displaynames in the list*/}
|
||||||
<ReferenceField
|
<ReferenceField
|
||||||
source="name"
|
source="name"
|
||||||
|
|
Loading…
Reference in a new issue