kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
Merge branch 'search-nav' into 'develop'
SidebarNavigation: add back search button See merge request soapbox-pub/soapbox-fe!1349site-logo
commit
211ddc9505
|
@ -13,6 +13,7 @@ import SidebarNavigationLink from './sidebar-navigation-link';
|
|||
|
||||
import type { Menu } from 'soapbox/components/dropdown_menu';
|
||||
|
||||
/** Desktop sidebar with links to different views in the app. */
|
||||
const SidebarNavigation = () => {
|
||||
const instance = useAppSelector((state) => state.instance);
|
||||
const settings = useAppSelector((state) => getSettings(state));
|
||||
|
@ -141,6 +142,12 @@ const SidebarNavigation = () => {
|
|||
text={<FormattedMessage id='tabs_bar.home' defaultMessage='Home' />}
|
||||
/>
|
||||
|
||||
<SidebarNavigationLink
|
||||
to='/search'
|
||||
icon={require('@tabler/icons/icons/search.svg')}
|
||||
text={<FormattedMessage id='tabs_bar.search' defaultMessage='Search' />}
|
||||
/>
|
||||
|
||||
{account && (
|
||||
<>
|
||||
<SidebarNavigationLink
|
||||
|
|
Ładowanie…
Reference in New Issue