Merge branch 'sidebar-bell' into 'develop'
SidebarNavigation: use the bell icon See merge request soapbox-pub/soapbox-fe!1354
This commit is contained in:
commit
f43c87e7b7
2 changed files with 2 additions and 4 deletions
|
@ -1 +0,0 @@
|
||||||
<svg viewBox="0 0 24 24" stroke="currentColor" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 14v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h6M19 9a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
Before Width: | Height: | Size: 267 B |
|
@ -35,8 +35,7 @@ const SidebarNavigation = () => {
|
||||||
to: '/follow_requests',
|
to: '/follow_requests',
|
||||||
text: <FormattedMessage id='navigation_bar.follow_requests' defaultMessage='Follow requests' />,
|
text: <FormattedMessage id='navigation_bar.follow_requests' defaultMessage='Follow requests' />,
|
||||||
icon: require('@tabler/icons/icons/user-plus.svg'),
|
icon: require('@tabler/icons/icons/user-plus.svg'),
|
||||||
// TODO: let menu items have a counter
|
count: followRequestsCount,
|
||||||
// count: followRequestsCount,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -158,7 +157,7 @@ const SidebarNavigation = () => {
|
||||||
|
|
||||||
<SidebarNavigationLink
|
<SidebarNavigationLink
|
||||||
to='/notifications'
|
to='/notifications'
|
||||||
icon={require('icons/alert.svg')}
|
icon={require('@tabler/icons/icons/bell.svg')}
|
||||||
count={notificationCount}
|
count={notificationCount}
|
||||||
text={<FormattedMessage id='tabs_bar.notifications' defaultMessage='Notifications' />}
|
text={<FormattedMessage id='tabs_bar.notifications' defaultMessage='Notifications' />}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue