Fix crash in onboarding modal

Fixes #1027
local
Thibaut Girka 5 years ago committed by ThibG
parent fcbf557bd2
commit 7617f78359
  1. 4
      app/javascript/flavours/glitch/features/compose/components/compose_form.js
  2. 4
      app/javascript/flavours/glitch/features/ui/components/onboarding_modal.js

@ -321,8 +321,8 @@ class ComposeForm extends ImmutablePureComponent {
onSuggestionsClearRequested={onClearSuggestions}
onSuggestionSelected={this.onSpoilerSuggestionSelected}
searchTokens={[':']}
id='glitch.composer.spoiler.input'
className='spoiler-input__input'
id='glitch.composer.spoiler.input'
className='spoiler-input__input'
/>
</div>

@ -6,7 +6,7 @@ import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
import ReactSwipeableViews from 'react-swipeable-views';
import classNames from 'classnames';
import Permalink from 'flavours/glitch/components/permalink';
import { ComposeForm } from 'flavours/glitch/features/compose/components/compose_form';
import ComposeForm from 'flavours/glitch/features/compose/components/compose_form';
import DrawerAccount from 'flavours/glitch/features/compose/components/navigation_bar';
import Search from 'flavours/glitch/features/compose/components/search';
import ColumnHeader from './column_header';
@ -48,6 +48,8 @@ const PageTwo = ({ intl, myAccount }) => (
<ComposeForm
privacy='public'
text='Awoo! #introductions'
spoilerText=''
suggestions={ [] }
/>
</div>
</div>

Loading…
Cancel
Save