From c0a94a80f5a199344cb4813f3694b1c2769c27cb Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me> Date: Mon, 26 Oct 2020 17:05:59 -0400 Subject: [PATCH] Added favorited domains and tags to the navigation panel. --- app/javascript/mastodon/features/getting_started/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/javascript/mastodon/features/getting_started/index.js b/app/javascript/mastodon/features/getting_started/index.js index b0968bc102..5cc389a13c 100644 --- a/app/javascript/mastodon/features/getting_started/index.js +++ b/app/javascript/mastodon/features/getting_started/index.js @@ -13,6 +13,8 @@ import { List as ImmutableList } from 'immutable'; import NavigationContainer from '../compose/containers/navigation_container'; import Icon from 'mastodon/components/icon'; import LinkFooter from 'mastodon/features/ui/components/link_footer'; +import FavouriteDomainPanel from 'mastodon/features/ui/components/favourite_domain_panel'; +import FavouriteTagPanel from 'mastodon/features/ui/components/favourite_tag_panel'; import TrendsContainer from './containers/trends_container'; const messages = defineMessages({ @@ -207,6 +209,9 @@ class GettingStarted extends ImmutablePureComponent { {navItems} </div> + <FavouriteDomainPanel /> + <FavouriteTagPanel /> + {!multiColumn && <div className='flex-spacer' />} <LinkFooter withHotkeys={multiColumn} /> -- GitLab