mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-06 04:26:57 +00:00
fix tooltip of glossaryTerms in entity page (#16482)
This commit is contained in:
parent
1c061de701
commit
cb488c62ee
@ -279,7 +279,10 @@ const TagsContainerV2 = ({
|
||||
<Col>
|
||||
<Tooltip
|
||||
title={t('label.edit-entity', {
|
||||
entity: t('label.tag-plural'),
|
||||
entity:
|
||||
tagType === TagSource.Classification
|
||||
? t('label.tag-plural')
|
||||
: t('label.glossary-term'),
|
||||
})}>
|
||||
<EditIcon
|
||||
className="cursor-pointer align-middle"
|
||||
@ -319,7 +322,10 @@ const TagsContainerV2 = ({
|
||||
permission && !isEmpty(tags?.[tagType]) ? (
|
||||
<Tooltip
|
||||
title={t('label.edit-entity', {
|
||||
entity: t('label.tag-plural'),
|
||||
entity:
|
||||
tagType === TagSource.Classification
|
||||
? t('label.tag-plural')
|
||||
: t('label.glossary-term'),
|
||||
})}>
|
||||
<Button
|
||||
className="hover-cell-icon cursor-pointer align-middle p-0"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user