Skip to content

Commit

Permalink
EPMRPP-96850 || Incorrect order of options in the meatball menu for p…
Browse files Browse the repository at this point in the history
…roject
  • Loading branch information
maria-hambardzumian committed Nov 11, 2024
1 parent f82e052 commit fd96ce3
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,23 +86,23 @@ export const ProjectActionMenu = ({ details }) => {
<div className={cx('action-dropdown')}>
<Link
to={{
type: 'PROJECT_SETTINGS_PAGE',
type: 'PROJECT_MEMBERS_PAGE',
payload: { projectSlug, organizationSlug },
}}
className={cx('action-item')}
onClick={() => dispatch(setActiveProjectKeyAction(projectKey))}
>
<span>Settings</span>
<span>Team</span>
</Link>
<Link
to={{
type: 'PROJECT_MEMBERS_PAGE',
type: 'PROJECT_SETTINGS_PAGE',
payload: { projectSlug, organizationSlug },
}}
className={cx('action-item')}
onClick={() => dispatch(setActiveProjectKeyAction(projectKey))}
>
<span>Team</span>
<span>Settings</span>
</Link>
<div className={cx('divider')} />
{actionsButtons.map(
Expand Down

0 comments on commit fd96ce3

Please sign in to comment.