mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: cycle list item fix
This commit is contained in:
parent
f2a4e026a5
commit
d8eeb9e17a
@ -172,17 +172,19 @@ export const SingleCycleList: React.FC<TSingleStatProps> = ({
|
|||||||
: ""
|
: ""
|
||||||
}`}
|
}`}
|
||||||
/>
|
/>
|
||||||
<div>
|
<div className="max-w-2xl">
|
||||||
<Tooltip
|
<Tooltip
|
||||||
tooltipContent={cycle.name}
|
tooltipContent={cycle.name}
|
||||||
className="break-words"
|
className="break-words"
|
||||||
position="top-left"
|
position="top-left"
|
||||||
>
|
>
|
||||||
<h3 className="break-words text-base font-semibold">
|
<h3 className="break-words w-full text-base font-semibold">
|
||||||
{truncateText(cycle.name, 70)}
|
{truncateText(cycle.name, 70)}
|
||||||
</h3>
|
</h3>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
<p className="mt-2 text-brand-secondary">{cycle.description}</p>
|
<p className="mt-2 text-brand-secondary break-words w-full">
|
||||||
|
{cycle.description}
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</span>
|
</span>
|
||||||
<span className="flex items-center gap-4 capitalize">
|
<span className="flex items-center gap-4 capitalize">
|
||||||
|
Loading…
Reference in New Issue
Block a user