Skip to content

Commit

Permalink
Remove "userAndRoles" from navTree
Browse files Browse the repository at this point in the history
  • Loading branch information
sebelga committed Dec 18, 2024
1 parent 759b9dc commit 0205b4b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
4 changes: 0 additions & 4 deletions x-pack/plugins/serverless_search/public/navigation_tree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,6 @@ export const navigationTree = ({ isAppRegistered }: ApplicationStart): Navigatio
defaultMessage: 'Management',
}),
},
{
id: 'cloudLinkUserAndRoles',
cloudLink: 'userAndRoles',
},
{
id: 'cloudLinkDeployment',
cloudLink: 'deployment',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ export const initSideNavigation = async (services: Services) => {
) as GroupDefinition;
if (footerGroup) {
footerGroup.title = PROJECT_SETTINGS_TITLE;
footerGroup.children.push(
{ cloudLink: 'userAndRoles', openInNewTab: true },
{ cloudLink: 'billingAndSub', openInNewTab: true }
);
footerGroup.children.push({ cloudLink: 'billingAndSub', openInNewTab: true });
}
})
)
Expand Down

0 comments on commit 0205b4b

Please sign in to comment.