File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
packages/web/app/src/pages Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1358,19 +1358,19 @@ function AttributeRow(props: AttributeRowProps) {
1358
1358
const [ isExpanded , setIsExpanded ] = useState ( false ) ;
1359
1359
1360
1360
const actionsNode = (
1361
- < >
1361
+ < span className = "ml-auto mr-0 flex text-white" >
1362
1362
< CopyIconButton value = { props . value } label = "Copy attribute value" />
1363
1363
< TooltipProvider >
1364
- < Tooltip delayDuration = { 0 } >
1364
+ < Tooltip delayDuration = { 0 } disableHoverableContent >
1365
1365
< TooltipTrigger asChild >
1366
1366
< Button variant = "ghost" size = "icon-xs" onClick = { ( ) => setIsExpanded ( bool => ! bool ) } >
1367
1367
{ isExpanded ? < ChevronUp size = "14" /> : < ChevronDown size = "14" /> }
1368
1368
</ Button >
1369
1369
</ TooltipTrigger >
1370
- < TooltipContent > { isExpanded ? 'Collapse' : 'Expand' } </ TooltipContent >
1370
+ < TooltipContent className = "text-xs" > { isExpanded ? 'Collapse' : 'Expand' } </ TooltipContent >
1371
1371
</ Tooltip >
1372
1372
</ TooltipProvider >
1373
- </ >
1373
+ </ span >
1374
1374
) ;
1375
1375
1376
1376
return (
@@ -1407,7 +1407,7 @@ function CopyIconButton(props: CopyIconButtonProps) {
1407
1407
const clipboard = useClipboard ( ) ;
1408
1408
return (
1409
1409
< TooltipProvider >
1410
- < Tooltip delayDuration = { 0 } >
1410
+ < Tooltip delayDuration = { 0 } disableHoverableContent >
1411
1411
< TooltipTrigger asChild >
1412
1412
< Button
1413
1413
variant = "ghost"
@@ -1418,7 +1418,7 @@ function CopyIconButton(props: CopyIconButtonProps) {
1418
1418
< CopyIcon size = "10" />
1419
1419
</ Button >
1420
1420
</ TooltipTrigger >
1421
- < TooltipContent > { props . label } </ TooltipContent >
1421
+ < TooltipContent className = "text-xs" > { props . label } </ TooltipContent >
1422
1422
</ Tooltip > { ' ' }
1423
1423
</ TooltipProvider >
1424
1424
) ;
You can’t perform that action at this time.
0 commit comments