init
This commit is contained in:
parent
7eeb60539f
commit
ca48495bbf
@ -14,8 +14,20 @@ import {
|
||||
TextInput,
|
||||
ReferenceField,
|
||||
regex,
|
||||
CreateButton,
|
||||
ExportButton,
|
||||
TopToolbar,
|
||||
} from "react-admin";
|
||||
|
||||
const ListActions = () => (
|
||||
<TopToolbar>
|
||||
<CreateButton />
|
||||
<ExportButton
|
||||
maxResults={"1500"}
|
||||
/>
|
||||
</TopToolbar>
|
||||
);
|
||||
|
||||
const UserFilter = props => (
|
||||
<Filter {...props}>
|
||||
<BooleanInput source="guests" alwaysOn />
|
||||
@ -33,6 +45,7 @@ export const UserList = props => (
|
||||
filters={<UserFilter />}
|
||||
filterDefaultValues={{ guests: true, deactivated: false }}
|
||||
bulkActionButtons={false}
|
||||
actions={<ListActions />}
|
||||
>
|
||||
<Datagrid rowClick="edit">
|
||||
<ReferenceField
|
||||
|
Loading…
Reference in New Issue
Block a user