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 8ac30e7 commit 349b78fCopy full SHA for 349b78f
.changeset/chilly-bobcats-smile.md
@@ -0,0 +1,5 @@
1
+---
2
+'hive': patch
3
4
+
5
+Improve resource ID tooltip behavior
packages/web/app/src/components/ui/resource-details.tsx
@@ -11,10 +11,10 @@ export function ResourceDetails(props: { id: string }): ReactElement {
11
Resource ID
12
</div>
13
<InputCopy value={props.id} className="rounded-l-none" />
14
- <TooltipProvider>
+ <TooltipProvider delayDuration={0}>
15
<Tooltip>
16
<TooltipTrigger>
17
- <InfoCircledIcon className="ml-2 size-4" />
+ <InfoCircledIcon className="ml-2 size-4 cursor-default" />
18
</TooltipTrigger>
19
<TooltipContent className="max-w-sm text-pretty">
20
This UUID can be used in API calls or CLI commands to Hive instead of passing the full
0 commit comments