fix(catalog-react) : fixing owner text overflow

Signed-off-by: its-mitesh-kumar <itsmiteshkumar98@gmail.com>
This commit is contained in:
its-mitesh-kumar
2024-11-04 14:32:51 +05:30
parent 55ce583d9d
commit 69208ae3ed
@@ -77,7 +77,16 @@ export const EntityDisplayName = (
);
// The innermost "body" content
let content = <>{primaryTitle}</>;
let content = (
<div
style={{
overflow: 'hidden',
wordBreak: 'break-word',
}}
>
{primaryTitle}
</div>
);
// Optionally an icon, and wrapper around them both
content = (