-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Use new navigation in admin view #90426
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| <SecondaryNav.Header> | ||
| {PRIMARY_NAV_GROUP_CONFIG[PrimaryNavGroup.SETTINGS].label} | ||
| </SecondaryNav.Header> | ||
| <SecondaryNav.Header /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed the behavior so that the header will by default use the default group label - otherwise the label would always have been settings
| import {AdminNavigation} from 'sentry/views/admin/adminLayout'; | ||
|
|
||
| export function AdminSecondaryNav() { | ||
| return <AdminNavigation />; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not doing much right now, but will copy this component over when GA'd
| <Tooltip title={label} disabled={showLabel} position="right" skipWrapper delay={0}> | ||
| <Tooltip | ||
| title={label} | ||
| disabled={showLabel || disableTooltip} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While I was modifying the user dropdown, disabled the tooltip since it is unnecessary
Similar changes that were done in settings to get the nav items to render in the secondary navigation rather than in the page. This is for the
sentry.io/managepage which is used for self hosted customers.