Fix onboarding modal & add re-open button (#129)
* Added a button to open the onboarding modal * Fixed onboarding modal * added a show-me-around getting-started menu button
This commit is contained in:
parent
4dc0ddc601
commit
cb42dd8497
4 changed files with 24 additions and 5 deletions
|
@ -150,7 +150,7 @@ export default class ComposeForm extends ImmutablePureComponent {
|
|||
render () {
|
||||
const { intl, onPaste, showSearch } = this.props;
|
||||
const disabled = this.props.is_submitting;
|
||||
const maybeEye = this.props.advanced_options.get('do_not_federate') ? ' 👁️' : '';
|
||||
const maybeEye = (this.props.advanced_options && this.props.advanced_options.do_not_federate) ? ' 👁️' : '';
|
||||
const text = [this.props.spoiler_text, countableText(this.props.text), maybeEye].join('');
|
||||
|
||||
let publishText = '';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue