Search Box: Handle focus properly
This commit is contained in:
parent
2db14e8d6f
commit
c0ebafe2bc
2 changed files with 5 additions and 2 deletions
|
@ -317,7 +317,7 @@ export function CompositionArea({
|
|||
if (inputApiRef.current) {
|
||||
inputApiRef.current.focus();
|
||||
}
|
||||
});
|
||||
}, []);
|
||||
// Focus input whenever explicitly requested
|
||||
useEffect(() => {
|
||||
if (focusCounter !== previousFocusCounter && inputApiRef.current) {
|
||||
|
|
|
@ -339,7 +339,10 @@ export function reducer(
|
|||
}
|
||||
|
||||
if (action.type === 'SEARCH_CLEAR') {
|
||||
return getEmptyState();
|
||||
return {
|
||||
...getEmptyState(),
|
||||
startSearchCounter: state.startSearchCounter,
|
||||
};
|
||||
}
|
||||
|
||||
if (action.type === 'SEARCH_UPDATE') {
|
||||
|
|
Loading…
Reference in a new issue