mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-18 00:52:21 +03:00
* Fix #1038: Logout button should be change to gray * Fix #1059: Replace Inbox by Notifications in navigation * Fixed lint issues * Fixed the import
This commit is contained in:
parent
c790cc5d0c
commit
a8856516bd
@ -33,4 +33,3 @@ services:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
ports:
|
||||
- "5432"
|
||||
|
||||
|
@ -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,
|
||||
@ -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
|
||||
|
@ -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';
|
||||
|
Loading…
Reference in New Issue
Block a user