mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-30 11:56:01 +00:00
Small change to fix the Glossary TErm Tasks not fetching Owner automatically (#15535)
This commit is contained in:
parent
2a3aa90faa
commit
7d418ea411
@ -561,7 +561,9 @@ export const fetchEntityDetail = (
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
case EntityType.GLOSSARY:
|
case EntityType.GLOSSARY:
|
||||||
getGlossariesByName(entityFQN, { fields: TabSpecificField.TAGS })
|
getGlossariesByName(entityFQN, {
|
||||||
|
fields: [TabSpecificField.OWNER, TabSpecificField.TAGS].join(','),
|
||||||
|
})
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
setEntityData(res);
|
setEntityData(res);
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user