mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-21 23:13:05 +00:00
fix ui breaking on column task thread select and user profile display name (#12586)
This commit is contained in:
parent
50fb66c8dc
commit
f7e07ad694
@ -236,7 +236,7 @@ const ActivityThreadPanelBody: FC<ActivityThreadPanelBodyProp> = ({
|
|||||||
{showHeader && isConversationType && (
|
{showHeader && isConversationType && (
|
||||||
<FeedPanelHeader
|
<FeedPanelHeader
|
||||||
className="tw-px-4 tw-shadow-sm"
|
className="tw-px-4 tw-shadow-sm"
|
||||||
entityLink={selectedThread?.about ?? ''}
|
entityLink={selectedThread?.about ?? threadLink}
|
||||||
noun={
|
noun={
|
||||||
isConversationType
|
isConversationType
|
||||||
? t('label.conversation-plural')
|
? t('label.conversation-plural')
|
||||||
|
@ -111,7 +111,7 @@ const UserProfileDetails = ({
|
|||||||
className="text-lg font-medium"
|
className="text-lg font-medium"
|
||||||
ellipsis={{ tooltip: true }}>
|
ellipsis={{ tooltip: true }}>
|
||||||
{hasEditPermission
|
{hasEditPermission
|
||||||
? userData.displayName ??
|
? userData.displayName ||
|
||||||
t('label.add-entity', { entity: t('label.display-name') })
|
t('label.add-entity', { entity: t('label.display-name') })
|
||||||
: getEntityName(userData)}
|
: getEntityName(userData)}
|
||||||
</Typography.Text>
|
</Typography.Text>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user