Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,14 @@ export const ExtraInfoLabel = ({
return (
<div className="d-flex align-start extra-info-container">
<Typography.Text
className="whitespace-nowrap text-sm d-flex flex-col gap-2 w-full"
className="text-sm d-flex flex-col gap-2 w-full"
data-testid={dataTestId}>
{!isEmpty(label) && (
<span className="extra-info-label-heading">{label}</span>
<Typography.Text
className="extra-info-label-heading"
ellipsis={{ tooltip: true }}>
{label}
</Typography.Text>
)}

<Typography.Text
Expand Down Expand Up @@ -140,7 +144,11 @@ export const ExtraInfoLink = ({
'w-48': ellipsis,
})}>
{!isEmpty(label) && (
<span className="extra-info-label-heading m-r-xss">{label}</span>
<Typography.Text
className="extra-info-label-heading m-r-xss"
ellipsis={ellipsis ? { tooltip: true } : false}>
{label}
</Typography.Text>
)}
<div className="d-flex items-center gap-1">
<Tooltip title={value}>
Expand Down
Loading