* Fix #1038: Logout button should be change to gray * Fix #1059: Replace Inbox by Notifications in navigation * Fixed lint issues * Fixed the import * Fix #1076: Change User icon into User-circle on Companies & Settings
This commit is contained in:
@ -4,7 +4,7 @@ import {
|
|||||||
IconCalendarEvent,
|
IconCalendarEvent,
|
||||||
IconLink,
|
IconLink,
|
||||||
IconMap,
|
IconMap,
|
||||||
IconUser,
|
IconUserCircle,
|
||||||
IconUsers,
|
IconUsers,
|
||||||
} from '@/ui/icon/index';
|
} from '@/ui/icon/index';
|
||||||
import { Entity } from '@/ui/input/relation-picker/types/EntityTypeForSelect';
|
import { Entity } from '@/ui/input/relation-picker/types/EntityTypeForSelect';
|
||||||
@ -48,7 +48,7 @@ export const companyViewFields: ViewFieldDefinition<ViewFieldMetadata>[] = [
|
|||||||
{
|
{
|
||||||
id: 'accountOwner',
|
id: 'accountOwner',
|
||||||
columnLabel: 'Account Owner',
|
columnLabel: 'Account Owner',
|
||||||
columnIcon: <IconUser />,
|
columnIcon: <IconUserCircle />,
|
||||||
columnSize: 150,
|
columnSize: 150,
|
||||||
columnOrder: 3,
|
columnOrder: 3,
|
||||||
metadata: {
|
metadata: {
|
||||||
|
|||||||
@ -8,7 +8,7 @@ import {
|
|||||||
IconColorSwatch,
|
IconColorSwatch,
|
||||||
IconLogout,
|
IconLogout,
|
||||||
IconSettings,
|
IconSettings,
|
||||||
IconUser,
|
IconUserCircle,
|
||||||
IconUsers,
|
IconUsers,
|
||||||
} from '@/ui/icon/index';
|
} from '@/ui/icon/index';
|
||||||
import NavItem from '@/ui/navbar/components/NavItem';
|
import NavItem from '@/ui/navbar/components/NavItem';
|
||||||
@ -32,7 +32,7 @@ export function SettingsNavbar() {
|
|||||||
<NavItem
|
<NavItem
|
||||||
label="Profile"
|
label="Profile"
|
||||||
to="/settings/profile"
|
to="/settings/profile"
|
||||||
icon={<IconUser size={theme.icon.size.md} />}
|
icon={<IconUserCircle size={theme.icon.size.md} />}
|
||||||
active={
|
active={
|
||||||
!!useMatch({
|
!!useMatch({
|
||||||
path: useResolvedPath('/settings/profile').pathname,
|
path: useResolvedPath('/settings/profile').pathname,
|
||||||
|
|||||||
Reference in New Issue
Block a user