~cytrogen/masto-fe

bb9459774d17d88fdd975c251481051041e28a56 — Thibaut Girka 6 years ago f717d7a
Add NavigationBar to getting started column in single-column mode

Fixes #1131
1 files changed, 3 insertions(+), 1 deletions(-)

M app/javascript/flavours/glitch/features/getting_started/index.js
M app/javascript/flavours/glitch/features/getting_started/index.js => app/javascript/flavours/glitch/features/getting_started/index.js +3 -1
@@ 14,6 14,7 @@ import { List as ImmutableList } from 'immutable';
import { createSelector } from 'reselect';
import { fetchLists } from 'flavours/glitch/actions/lists';
import { preferencesLink, signOutLink } from 'flavours/glitch/util/backend_links';
import NavigationBar from '../compose/components/navigation_bar';
import LinkFooter from 'flavours/glitch/features/ui/components/link_footer';

const messages = defineMessages({


@@ 165,7 166,8 @@ const NAVIGATION_PANEL_BREAKPOINT = 600 + (285 * 2) + (10 * 2);
      <Column name='getting-started' icon='asterisk' heading={intl.formatMessage(messages.heading)} label={intl.formatMessage(messages.menu)} hideHeadingOnMobile>
        <div className='scrollable optionally-scrollable'>
          <div className='getting-started__wrapper'>
            <ColumnSubheading text={intl.formatMessage(messages.navigation_subheading)} />
            {!multiColumn && <NavigationBar account={myAccount} />}
            {multiColumn && <ColumnSubheading text={intl.formatMessage(messages.navigation_subheading)} />}
            {navItems}
            <ColumnSubheading text={intl.formatMessage(messages.lists_subheading)} />
            {listItems}