chore: clear search term on escape key (#4289)

This commit is contained in:
Aaryan Khandelwal 2024-04-26 18:27:32 +05:30 committed by GitHub
parent f2fa6452c9
commit f87bb95236
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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();