mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-18 09:02:11 +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
|
POSTGRES_PASSWORD: postgrespassword
|
||||||
ports:
|
ports:
|
||||||
- "5432"
|
- "5432"
|
||||||
|
|
||||||
|
@ -4,9 +4,9 @@ import { useTheme } from '@emotion/react';
|
|||||||
import { useCommandMenu } from '@/command-menu/hooks/useCommandMenu';
|
import { useCommandMenu } from '@/command-menu/hooks/useCommandMenu';
|
||||||
import { SettingsNavbar } from '@/settings/components/SettingsNavbar';
|
import { SettingsNavbar } from '@/settings/components/SettingsNavbar';
|
||||||
import {
|
import {
|
||||||
|
IconBell,
|
||||||
IconBuildingSkyscraper,
|
IconBuildingSkyscraper,
|
||||||
IconCheckbox,
|
IconCheckbox,
|
||||||
IconInbox,
|
|
||||||
IconSearch,
|
IconSearch,
|
||||||
IconSettings,
|
IconSettings,
|
||||||
IconTargetArrow,
|
IconTargetArrow,
|
||||||
@ -36,9 +36,9 @@ export function AppNavbar() {
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<NavItem
|
<NavItem
|
||||||
label="Inbox"
|
label="Notifications"
|
||||||
to="/inbox"
|
to="/inbox"
|
||||||
icon={<IconInbox size={theme.icon.size.md} />}
|
icon={<IconBell size={theme.icon.size.md} />}
|
||||||
soon={true}
|
soon={true}
|
||||||
/>
|
/>
|
||||||
<NavItem
|
<NavItem
|
||||||
|
@ -6,6 +6,7 @@ export { IconTrash } from '@tabler/icons-react';
|
|||||||
export { IconLayoutSidebarRightCollapse } from '@tabler/icons-react';
|
export { IconLayoutSidebarRightCollapse } from '@tabler/icons-react';
|
||||||
export { IconLayoutSidebarLeftCollapse } from '@tabler/icons-react';
|
export { IconLayoutSidebarLeftCollapse } from '@tabler/icons-react';
|
||||||
export { IconUser } from '@tabler/icons-react';
|
export { IconUser } from '@tabler/icons-react';
|
||||||
|
export { IconBell } from '@tabler/icons-react';
|
||||||
export { IconList } from '@tabler/icons-react';
|
export { IconList } from '@tabler/icons-react';
|
||||||
export { IconInbox } from '@tabler/icons-react';
|
export { IconInbox } from '@tabler/icons-react';
|
||||||
export { IconSearch } from '@tabler/icons-react';
|
export { IconSearch } from '@tabler/icons-react';
|
||||||
|
Loading…
Reference in New Issue
Block a user