mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Fixes datamanager search input autofocus on load issue (#3830)
This commit is contained in:
parent
e10f993d47
commit
9beadc8d0a
1 changed files with 8 additions and 1 deletions
|
|
@ -827,7 +827,14 @@ const SearchBoxContainer = ({ onChange, onClear, queryString, activeDatasourceLi
|
|||
</svg>
|
||||
</span>
|
||||
)}
|
||||
<input type="text" value={searchText} onChange={handleChange} className="form-control" placeholder="Search" />
|
||||
<input
|
||||
type="text"
|
||||
value={searchText}
|
||||
onChange={handleChange}
|
||||
className="form-control"
|
||||
placeholder="Search"
|
||||
autoFocus
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue