Skip to content
Snippets Groups Projects
Unverified Commit 586b1c9d authored by Stanislas Signoud's avatar Stanislas Signoud Committed by GitHub
Browse files

Fix a missing redirection on getting-started in multi column mode (#26070)

parent b848ba38
No related branches found
No related tags found
No related merge requests found
......@@ -184,6 +184,7 @@ class SwitchingColumnsArea extends PureComponent {
{singleColumn ? <Redirect from='/deck' to='/home' exact /> : null}
{singleColumn && pathName.startsWith('/deck/') ? <Redirect from={pathName} to={pathName.slice(5)} /> : null}
{!singleColumn && pathName === '/getting-started' ? <Redirect from='/getting-started' to='/deck/getting-started' exact /> : null}
<WrappedRoute path='/getting-started' component={GettingStarted} content={children} />
<WrappedRoute path='/keyboard-shortcuts' component={KeyboardShortcuts} content={children} />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment