chore: clear search term on escape key (#4289)
This commit is contained in:
parent
f2fa6452c9
commit
f87bb95236
1 changed files with 3 additions and 1 deletions
|
|
@ -178,7 +178,9 @@ export const CommandModal: React.FC = observer(() => {
|
|||
return 0;
|
||||
}}
|
||||
onKeyDown={(e) => {
|
||||
// when search is empty and page is undefined
|
||||
// when search term is not empty, esc should clear the search term
|
||||
if (e.key === "Escape" && searchTerm) setSearchTerm("");
|
||||
|
||||
// when user tries to close the modal with esc
|
||||
if (e.key === "Escape" && !page && !searchTerm) closePalette();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue