We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aff4d9c commit dceac7dCopy full SHA for dceac7d
packages/web-console/src/providers/SearchProvider/index.tsx
@@ -65,7 +65,7 @@ export const SearchProvider = ({ children }: PropsWithChildren<{}>) => {
65
}, [updateLeftPanelState])
66
67
const handleGlobalSearch = useCallback((event: KeyboardEvent) => {
68
- if ((event.metaKey || event.ctrlKey) && event.shiftKey && event.key === 'f') {
+ if ((event.metaKey || event.ctrlKey) && event.shiftKey && (event.key === 'f' || event.key === 'F')) {
69
event.preventDefault()
70
setSearchPanelOpen(true)
71
setTimeout(() => {
0 commit comments