Skip to content

Commit

Permalink
bug fix: fix glossary dropdown viewing
Browse files Browse the repository at this point in the history
  • Loading branch information
xiphl authored Jun 23, 2022
1 parent 2be1e64 commit 13d5734
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ function EntityDropdown(props: Props) {
};

const canManageGlossaries = platformPrivileges
? platformPrivileges.manageDomains
: me?.platformPrivileges.manageDomains;
? platformPrivileges.manageGlossaries
: me?.platformPrivileges.manageGlossaries;
const pageUrl = window.location.href;
const isDeleteDisabled = !!entityData?.children?.count;

Expand Down

0 comments on commit 13d5734

Please sign in to comment.