[WEB-5784] fix: truncation of links in work items (#8430)
This commit is contained in:
parent
5590bf7198
commit
6cd85a7095
1 changed files with 5 additions and 5 deletions
|
|
@ -60,14 +60,14 @@ export const IssueLinkItem = observer(function IssueLinkItem(props: TIssueLinkIt
|
|||
href={linkDetail.url}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="flex-1 w-0 text-body-xs-regular cursor-pointer flex items-center gap-3"
|
||||
className="flex-1 w-0 text-body-xs-regular cursor-pointer flex items-center"
|
||||
>
|
||||
<span className="truncate">
|
||||
<span className="truncate flex-1 w-0">
|
||||
{linkDetail.title && linkDetail.title !== "" ? linkDetail.title : linkDetail.url}
|
||||
</span>
|
||||
{linkTitle && linkTitle !== "" && (
|
||||
<span className="text-placeholder text-caption-sm-regular flex-shrink-0">{linkTitle}</span>
|
||||
<span className="text-placeholder text-caption-sm-regular"> {linkTitle}</span>
|
||||
)}
|
||||
</span>
|
||||
</a>
|
||||
</Tooltip>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue