mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Streams 🌊] Revert route change that breaks navigation on refresh (#211741)
## 📓 Summary Revert a route config change introduced in [[Streams 🌊] Enrichment simulation behaviour improvements](https://github.com/elastic/kibana/pull/209985) that bring always to the overview page on refresh.
This commit is contained in:
parent
56c57c75b9
commit
95f4cbba80
1 changed files with 4 additions and 5 deletions
|
@ -34,17 +34,16 @@ const streamsAppRoutes = {
|
|||
),
|
||||
children: {
|
||||
'/{key}': {
|
||||
element: (
|
||||
<RedirectTo path="/{key}/{tab}" params={{ path: { tab: 'overview' } }}>
|
||||
<Outlet />
|
||||
</RedirectTo>
|
||||
),
|
||||
element: <Outlet />,
|
||||
params: t.type({
|
||||
path: t.type({
|
||||
key: t.string,
|
||||
}),
|
||||
}),
|
||||
children: {
|
||||
'/{key}': {
|
||||
element: <RedirectTo path="/{key}/{tab}" params={{ path: { tab: 'overview' } }} />,
|
||||
},
|
||||
'/{key}/management': {
|
||||
element: (
|
||||
<RedirectTo
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue