Skip to content

Commit aa1d592

Browse files
authored
Merge pull request #145 from devtron-labs/fix/generic-description
fix: add truncation in generic description
2 parents 147ccfa + aadf5aa commit aa1d592

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)