From 5b9fe7699ee73df590434de24805c1020ac460bf Mon Sep 17 00:00:00 2001 From: Seung Park Date: Wed, 2 Oct 2024 15:16:04 -0400 Subject: [PATCH] DOP-5045 followup: ensure focus prop on change (#1263) --- src/components/ActionBar/SearchInput.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/ActionBar/SearchInput.js b/src/components/ActionBar/SearchInput.js index edee31b7f..64e18d1a8 100644 --- a/src/components/ActionBar/SearchInput.js +++ b/src/components/ActionBar/SearchInput.js @@ -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={() => {