Skip to content

Commit

Permalink
Fix #1059: Replace "Inbox" by "Notifications" in navigation (#1063)
Browse files Browse the repository at this point in the history
* Fix #1038: Logout button should be change to gray

* Fix #1059: Replace Inbox by Notifications in navigation

* Fixed lint issues

* Fixed the import
  • Loading branch information
ducksblock authored Aug 4, 2023
1 parent c790cc5 commit a885651
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion .ergomake/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,3 @@ services:
POSTGRES_PASSWORD: postgrespassword
ports:
- "5432"

6 changes: 3 additions & 3 deletions front/src/AppNavbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { useTheme } from '@emotion/react';
import { useCommandMenu } from '@/command-menu/hooks/useCommandMenu';
import { SettingsNavbar } from '@/settings/components/SettingsNavbar';
import {
IconBell,
IconBuildingSkyscraper,
IconCheckbox,
IconInbox,
IconSearch,
IconSettings,
IconTargetArrow,
Expand Down Expand Up @@ -36,9 +36,9 @@ export function AppNavbar() {
}}
/>
<NavItem
label="Inbox"
label="Notifications"
to="/inbox"
icon={<IconInbox size={theme.icon.size.md} />}
icon={<IconBell size={theme.icon.size.md} />}
soon={true}
/>
<NavItem
Expand Down
1 change: 1 addition & 0 deletions front/src/modules/ui/icon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export { IconTrash } from '@tabler/icons-react';
export { IconLayoutSidebarRightCollapse } from '@tabler/icons-react';
export { IconLayoutSidebarLeftCollapse } from '@tabler/icons-react';
export { IconUser } from '@tabler/icons-react';
export { IconBell } from '@tabler/icons-react';
export { IconList } from '@tabler/icons-react';
export { IconInbox } from '@tabler/icons-react';
export { IconSearch } from '@tabler/icons-react';
Expand Down

0 comments on commit a885651

Please sign in to comment.