mirror of
https://github.com/wavetermdev/docusaurus-og.git
synced 2026-08-05 13:46:35 -07:00
fix: search input cmd-k shortcut not working.
This commit is contained in:
@@ -43,7 +43,7 @@ export const SearchInput: React.FC<SearchInputProps> = ({
|
||||
}
|
||||
|
||||
useWindowEventListener('keydown', (event) => {
|
||||
if (event.ctrlKey && event.code === 'KeyK') {
|
||||
if ((event.ctrlKey || event.metaKey) && event.code === 'KeyK') {
|
||||
event.preventDefault()
|
||||
focus()
|
||||
} else if (event.code === 'Escape') {
|
||||
|
||||
Reference in New Issue
Block a user