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
Apply 2 filters with source username and company.street to a Users list view
Navigate away to a list view of Posts
Navigate back to Users list view
Expect both filters username and company.street to still be applied to Users list
What happened instead:
When returning to the Users list view, only filter username is still applied. The filter company.street has disappeared.
Note: The filter that has disappeared has a compound property path as its source.
Steps to reproduce:
Steps to reproduce are identical to the "expected" steps above. However, here is an additional screen capture to better illustrate the bug:
constUserFilter=(props)=>(<Filter{...props}><TextInputsource="username"/>{*/ Here's the problem */}<TextInputsource="company.name"/></Filter>);exportconstUserList=props=>(<List{...props}filters={<UserFilter/>}><DatagridrowClick="edit"><TextFieldsource="id"/><TextFieldsource="username"/><TextFieldsource="company.name"/></Datagrid></List>);
What you were expecting:
username
andcompany.street
to a Users list viewusername
andcompany.street
to still be applied to Users listWhat happened instead:
When returning to the Users list view, only filter
username
is still applied. The filtercompany.street
has disappeared.Note: The filter that has disappeared has a compound property path as its source.
Steps to reproduce:
Steps to reproduce are identical to the "expected" steps above. However, here is an additional screen capture to better illustrate the bug:
Related code:
https://github.com/scottlowe/filter-bug-admin
Other information:
Environment
This issue possibly relates to #2657
The text was updated successfully, but these errors were encountered: