Skip to content

Commit bf2545c

Browse files
committed
fix: add truncation on last updated by in generic description
1 parent e8277e2 commit bf2545c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Common/GenericDescription/GenericDescription.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,8 @@ const GenericDescription = ({
258258
</div>
259259
{updatedBy && _date && (
260260
<div className="flex left fw-4 cn-7 ml-8 fs-12 h-20">
261-
Last updated by {updatedBy} on {_date}
261+
Last updated by &nbsp;
262+
<span className=" dc__ellipsis-right dc__mxw-200">{updatedBy}</span>&nbsp;on {_date}
262263
</div>
263264
)}
264265
<div

0 commit comments

Comments
 (0)