You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<ReferenceInputlabel="Benutzer"source="userId"reference="users"validate={[required()]}sort={{field: "email",order: "ASC"}}perPage={100}// This results in an errorfilterToQuery={(search: string)=>({email: search})}// This is a workaroundfilterToQuery={(search: string)=>({email: search ? search : " "})}><AutocompleteInputoptionText="email"optionValue="id"/></ReferenceInput>
The text was updated successfully, but these errors were encountered:
Hi, thanks a lot for this dataprovider. It works pretty well.
I've just stumbled over the following problem.
Reproduction
Create a ReferenceInput with an AutocompleteInput. The query that is build at the initialization (Empty search string) is the following, which results in an "Invalid filter value" backend error.
http://API/users?filter[0]=email||cont&limit=100&page=1&sort[0]=email%2CASC&offset=0
The text was updated successfully, but these errors were encountered: