Skip to content
Snippets Groups Projects
Unverified Commit 4f73129a authored by Maxime FRIESS's avatar Maxime FRIESS :blue_heart:
Browse files

[user] Fixed wrong filter

parent a29ac335
No related merge requests found
Pipeline #69538 passed with stages
in 16 minutes and 7 seconds
......@@ -59,8 +59,7 @@ const Users = (props) => {
source="person_id"
reference="people"
filterToQuery={(searchText) => ({
fullname: searchText,
has_account: false
fullname: searchText
})}>
<AutocompleteInput optionText="fullname" />
</ReferenceInput>
......@@ -78,8 +77,7 @@ const Users = (props) => {
source="person_id"
reference="people"
filterToQuery={(searchText) => ({
fullname: searchText,
has_account: false
fullname: searchText
})}>
<AutocompleteInput optionText="fullname" />
</ReferenceInput>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment