Skip to content

Commit

Permalink
feat(nav): Reposition alerts in nav and rename issues -> search (#86154)
Browse files Browse the repository at this point in the history
- Moves alert up into a "configure" section (which will include
detectors in the future)
- Renames "All" to "Search"
  • Loading branch information
malwilley authored Feb 28, 2025
1 parent 3b89659 commit 24c89af
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions static/app/views/issues/navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function IssueNavigation({children}: IssuesWrapperProps) {
<SecondaryNav.Body>
<SecondaryNav.Section>
<SecondaryNav.Item to={`${baseUrl}/`} end>
{t('All')}
{t('Search')}
</SecondaryNav.Item>
<SecondaryNav.Item to={`${baseUrl}/feedback/`}>
{t('Feedback')}
Expand Down Expand Up @@ -81,15 +81,15 @@ export function IssueNavigation({children}: IssuesWrapperProps) {
/>
</SecondaryNav.Section>
)}
<SecondaryNav.Section title={t('Configure')}>
<SecondaryNav.Item
to={`${baseUrl}/alerts/rules/`}
activeTo={`${baseUrl}/alerts/`}
>
{t('Alerts')}
</SecondaryNav.Item>
</SecondaryNav.Section>
</SecondaryNav.Body>
<SecondaryNav.Footer>
<SecondaryNav.Item
to={`${baseUrl}/alerts/rules/`}
activeTo={`${baseUrl}/alerts/`}
>
{t('Alerts')}
</SecondaryNav.Item>
</SecondaryNav.Footer>
</SecondaryNav>
{children}
</Fragment>
Expand Down

0 comments on commit 24c89af

Please sign in to comment.