Skip to content

Commit

Permalink
fix: manage settings group should not appear when no options
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav2733 committed Nov 17, 2023
1 parent ce6d573 commit 0fc1abe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datahub-web-react/src/app/settings/SettingsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export const SettingsPage = () => {
)}
</Menu.ItemGroup>
)}
{(!showViews || !showOwnershipTypes || !showHomePagePosts) && (
{(showViews || showOwnershipTypes || showHomePagePosts) && (
<Menu.ItemGroup title="Manage">
{showViews && (
<Menu.Item key="views">
Expand Down

0 comments on commit 0fc1abe

Please sign in to comment.