Add an id attribute to Search boxes. Should fix #1998

This commit is contained in:
Deluan
2022-11-21 13:44:16 -05:00
parent 19af11efbe
commit fcb891e704
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ import { List, DateField } from '../common'
const UserFilter = (props) => (
<Filter {...props} variant={'outlined'}>
<SearchInput source="name" alwaysOn />
<SearchInput id="search" source="name" alwaysOn />
</Filter>
)