Skip to content

Commit

Permalink
DOP-5045 followup: ensure focus prop on change (#1263)
Browse files Browse the repository at this point in the history
  • Loading branch information
seungpark authored Oct 2, 2024
1 parent 0a5e796 commit 5b9fe76
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/ActionBar/SearchInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ const SearchInput = ({ className, slug }) => {
value={searchValue}
placeholder={isMobile ? PLACEHOLDER_TEXT_MOBILE : PLACEHOLDER_TEXT}
onChange={(e) => {
setIsFocused(true);
setSearchValue(e.target.value);
}}
onClick={() => {
Expand Down

0 comments on commit 5b9fe76

Please sign in to comment.