Small change to fix the Glossary TErm Tasks not fetching Owner automatically (#15535)

This commit is contained in:
IceS2 2024-03-13 06:45:56 +01:00 committed by GitHub
parent 2a3aa90faa
commit 7d418ea411
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);
}) })