Skip to content

Commit 93e079b

Browse files
committed
fix: add missing component keys and tooltip max height
1 parent 3005a24 commit 93e079b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Shared/Components/ImageCard/SequentialCDCardTitle/DeploymentEnvState/DeploymentEnvState.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const DeploymentEnvState = ({ envStateText, title, tooltipContent }: DeploymentE
2727
content={tooltipContent}
2828
placement="right"
2929
interactive
30-
className="w-250 dc__resizable-textarea__with-max-height"
30+
className="w-250 dc__overflow-auto mxh-140"
3131
>
3232
<div className={`${stateClassName} br-4 cn-9 pt-3 pb-3 pl-6 pr-6 bw-1 mr-6`}>
3333
<span className="fw-4 fs-11 lh-16 flex">

src/Shared/Components/ImageCard/SequentialCDCardTitle/SequentialCDCardTitle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const SequentialCDCardTitle = ({
5353
tooltipContent={
5454
<div className="flexbox-col lh-20">
5555
{deployedOn.map((env) => (
56-
<span>{env}</span>
56+
<span key={env}>{env}</span>
5757
))}
5858
</div>
5959
}

0 commit comments

Comments
 (0)