mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-15 12:37:18 +00:00
fixed owner label (#21085)
This commit is contained in:
parent
76136d8dea
commit
fc0f84f41b
@ -284,9 +284,7 @@ const IncidentManagerPageHeader = ({
|
||||
team: false,
|
||||
}}
|
||||
owners={details?.assignee ? [details.assignee] : []}
|
||||
placeHolder={t('label.no-entity', {
|
||||
entity: t('label.assignee'),
|
||||
})}
|
||||
placeHolder={t('label.assignee')}
|
||||
tooltipText={t('label.edit-entity', {
|
||||
entity: t('label.assignee'),
|
||||
})}
|
||||
|
@ -86,8 +86,11 @@ export const NoOwnerFound: React.FC<NoOwnerFoundProps> = ({
|
||||
|
||||
{!isCompactView && (
|
||||
<div className="no-owner-text text-sm font-medium">
|
||||
{placeHolder ??
|
||||
t('label.no-entity', { entity: t('label.owner-plural') })}
|
||||
{placeHolder
|
||||
? showLabel
|
||||
? t('label.no-entity', { entity: placeHolder })
|
||||
: placeHolder
|
||||
: t('label.no-entity', { entity: t('label.owner-plural') })}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user