Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ const GlossaryHeader = ({

const importExportPermissions = useMemo(
() =>
permissions.All ||
permissions.EditAll ||
Comment on lines 131 to +133
checkPermission(
Operation.All,
ResourceEntity.GLOSSARY_TERM,
Expand All @@ -139,7 +141,7 @@ const GlossaryHeader = ({
ResourceEntity.GLOSSARY_TERM,
globalPermissions
),
[globalPermissions]
[globalPermissions, permissions]
);
Comment on lines 130 to 145

// To fetch the latest glossary data
Expand Down
Loading