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…
Add table
Add a link
Reference in a new issue