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
@@ -13,7 +13,7 @@ import { SimpleList, List } from '../common'
const PlayerFilter = (props) => (
<Filter {...props} variant={'outlined'}>
<SearchInput source="name" alwaysOn />
<SearchInput id="search" source="name" alwaysOn />
</Filter>
)