removed duplicate route components from browser (#5584)

All routes '/', '/:bucket/', '/:bucket/*' render the same
component. Instead we could just have a single route like following which
combines all the above routes

'/:bucket?/*'

bucket is optional here, so it can cover '/'
This commit is contained in:
Kanagaraj M
2018-03-01 00:49:00 +05:30
committed by Harshavardhana
parent a6adef0bdf
commit 54e5ee6535
3 changed files with 45 additions and 19 deletions

View File

@@ -34,6 +34,8 @@ export class BucketList extends React.Component {
if (bucket) {
setBucketList([bucket])
selectBucket(bucket, prefix)
} else {
history.replace("/login")
}
}
}