Bugfix sort users by `user_id`

Users are not sortable by `user_id`.
Set `sortable={false}`.
pull/52/head
dklimpel 4 years ago committed by Manuel Stahl
parent b7c3684b80
commit 5bdfb80db7

@ -78,7 +78,7 @@ export const UserList = props => (
>
<ImageField source="avatar_url" title="displayname" />
</ReferenceField>
<TextField source="id" />
<TextField source="id" sortable={false} />
{/* Hack since the users endpoint does not give displaynames in the list*/}
<ReferenceField
source="name"

Loading…
Cancel
Save