File tree 1 file changed +6
-2
lines changed
packages/ra-ui-materialui/src/input
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ import {
18
18
import sanitizeInputRestProps from './sanitizeInputRestProps' ;
19
19
import ReferenceError from './ReferenceError' ;
20
20
import { FieldInputProps , FieldMetaState } from 'react-final-form' ;
21
- import { sanitizeListRestProps } from 'ra-core' ;
22
21
23
22
export interface ReferenceArrayInputProps extends InputProps {
24
23
allowEmpty ?: boolean ;
@@ -169,7 +168,12 @@ const ReferenceArrayInput = ({
169
168
translate = { translate }
170
169
children = { children }
171
170
{ ...props }
172
- { ...sanitizeListRestProps ( controllerProps ) }
171
+ choices = { controllerProps . choices }
172
+ loaded = { controllerProps . loaded }
173
+ loading = { controllerProps . loading }
174
+ setFilter = { controllerProps . setFilter }
175
+ setPagination = { controllerProps . setPagination }
176
+ setSort = { controllerProps . setSort }
173
177
/>
174
178
</ ListContextProvider >
175
179
</ ReferenceArrayInputContextProvider >
You can’t perform that action at this time.
0 commit comments