Search Box: Handle focus properly

This commit is contained in:
Scott Nonnenberg
2022-12-09 10:03:32 -08:00
committed by GitHub
parent 2db14e8d6f
commit c0ebafe2bc
2 changed files with 5 additions and 2 deletions

View File

@@ -339,7 +339,10 @@ export function reducer(
}
if (action.type === 'SEARCH_CLEAR') {
return getEmptyState();
return {
...getEmptyState(),
startSearchCounter: state.startSearchCounter,
};
}
if (action.type === 'SEARCH_UPDATE') {