diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-05-30 18:42:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-30 18:42:06 +0200 |
commit | 3623aea6c994f0b96466d7ac83c1bbe0a9c8a267 (patch) | |
tree | cb08d26e8f197136d029a82b46acf9f417d57563 | |
parent | 1a7a74ff76a129031a3fd6d73688ab9409899002 (diff) |
Redirect / to home on mobile layout, to getting started on desktop (#7677)
-rw-r--r-- | app/javascript/mastodon/features/ui/index.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/ui/index.js b/app/javascript/mastodon/features/ui/index.js index adb856b92..f1409b946 100644 --- a/app/javascript/mastodon/features/ui/index.js +++ b/app/javascript/mastodon/features/ui/index.js @@ -132,11 +132,12 @@ class SwitchingColumnsArea extends React.PureComponent { render () { const { children } = this.props; const { mobile } = this.state; + const redirect = mobile ? <Redirect from='/' to='/timelines/home' exact /> : <Redirect from='/' to='/getting-started' exact />; return ( <ColumnsAreaContainer ref={this.setRef} singleColumn={mobile}> <WrappedSwitch> - <Redirect from='/' to='/getting-started' exact /> + {redirect} <WrappedRoute path='/getting-started' component={GettingStarted} content={children} /> <WrappedRoute path='/keyboard-shortcuts' component={KeyboardShortcuts} content={children} /> <WrappedRoute path='/timelines/home' component={HomeTimeline} content={children} /> |