Skip to content

Commit

Permalink
Small change to fix the Glossary TErm Tasks not fetching Owner automa…
Browse files Browse the repository at this point in the history
…tically (#15535)
  • Loading branch information
IceS2 committed Mar 13, 2024
1 parent 8f93866 commit f37352a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,9 @@ export const fetchEntityDetail = (

break;
case EntityType.GLOSSARY:
getGlossariesByName(entityFQN, { fields: TabSpecificField.TAGS })
getGlossariesByName(entityFQN, {
fields: [TabSpecificField.OWNER, TabSpecificField.TAGS].join(','),
})
.then((res) => {
setEntityData(res);
})
Expand Down

0 comments on commit f37352a

Please sign in to comment.