Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkim-det committed May 24, 2024
1 parent 822c92a commit e451698
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions webui/react/src/components/NavigationTabbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,22 +139,22 @@ const NavigationTabbar: React.FC = () => {
</div>
),
},
{
icon: 'settings',
label: 'User Settings',
onClick: () => setShowSettings(true),
},
];

if (canAdministrateUsers) {
overflowActionsTop.push({
icon: 'group',
label: 'Admin Settings',
path: paths.admin(),
onClick: (e: AnyMouseEvent) => handlePathUpdate(e, paths.admin()),
});
}

const overflowActionsBottom: OverflowActionProps[] = [
{
icon: 'settings',
label: 'User Settings',
onClick: () => setShowSettings(true),
},
{
icon: 'user',
label: 'Sign out',
Expand Down

0 comments on commit e451698

Please sign in to comment.