Merge pull request #11313 from influxdata/fix/11304

fix(ui): update IndexRoute to MePage
pull/11413/head
Brandon Farmer 2019-01-22 12:52:45 -08:00 committed by GitHub
commit 3d1978ca17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ class Root extends PureComponent {
<Route component={App}> <Route component={App}>
<Route component={GetSources}> <Route component={GetSources}>
<Route component={SetActiveSource}> <Route component={SetActiveSource}>
<IndexRoute component={DashboardsIndex} /> <IndexRoute component={MePage} />
<Route path="organizations"> <Route path="organizations">
<IndexRoute component={OrganizationsIndex} /> <IndexRoute component={OrganizationsIndex} />
<Route <Route

View File

@ -135,7 +135,7 @@ class SigninForm extends PureComponent<Props, State> {
if (query && query.returnTo) { if (query && query.returnTo) {
router.push(query.returnTo) router.push(query.returnTo)
} else { } else {
router.push('/me') router.push('/')
} }
} }
} }