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 572ef23 commit 838791fCopy full SHA for 838791f
packages/web/src/app/[domain]/components/searchBar/searchBar.tsx
@@ -266,7 +266,18 @@ export const SearchBar = ({
266
indentWithTab={false}
267
autoFocus={autoFocus ?? false}
268
/>
269
- <KeyboardShortcutHint shortcut="/" />
+ <Tooltip
270
+ delayDuration={100}
271
+ >
272
+ <TooltipTrigger asChild>
273
+ <div>
274
+ <KeyboardShortcutHint shortcut="/" />
275
+ </div>
276
+ </TooltipTrigger>
277
+ <TooltipContent side="bottom" className="flex flex-row items-center gap-2">
278
+ Focus search bar
279
+ </TooltipContent>
280
+ </Tooltip>
281
<SearchSuggestionsBox
282
ref={suggestionBoxRef}
283
query={query}
0 commit comments