mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 04:15:30 +00:00
feedback
This commit is contained in:
parent
f58d468b76
commit
b75b622999
2 changed files with 1 additions and 3 deletions
|
|
@ -17,8 +17,6 @@ const toggleVariants = cva(
|
||||||
},
|
},
|
||||||
size: {
|
size: {
|
||||||
default: "h-7 w-7 min-w-7 p-0",
|
default: "h-7 w-7 min-w-7 p-0",
|
||||||
sm: "h-9 px-2.5 min-w-9",
|
|
||||||
lg: "h-11 px-5 min-w-11",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
defaultVariants: {
|
defaultVariants: {
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,7 @@ export const ExploreMenu = ({
|
||||||
});
|
});
|
||||||
|
|
||||||
useHotkeys('shift+a', () => {
|
useHotkeys('shift+a', () => {
|
||||||
setIsGlobalSearchEnabled(!isGlobalSearchEnabled);
|
setIsGlobalSearchEnabled(prev => !prev);
|
||||||
}, {
|
}, {
|
||||||
enableOnFormTags: true,
|
enableOnFormTags: true,
|
||||||
enableOnContentEditable: true,
|
enableOnContentEditable: true,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue