Skip to content

Commit

Permalink
Fixing replay search routes when path prefix is present. (#20910)
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisoelkers authored Nov 13, 2024
1 parent 15e2692 commit 638f75f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog/unreleased/pr-20910.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
type = "fixed"
message = "Fixing replay search routes when path prefix is present."

pulls = ["20910"]
4 changes: 2 additions & 2 deletions graylog2-web-interface/src/views/bindings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ const exports: PluginExports = {
{ path: Routes.unqualified.stream_search(':streamId'), component: StreamSearchPage, parentComponent: App },
{ path: extendedSearchPath, component: NewSearchPage, parentComponent: App },
{ path: showViewsPath, component: ShowViewPage, parentComponent: App },
{ path: Routes.ALERTS.replay_search(':alertId'), component: EventReplaySearchPage, parentComponent: App },
{ path: Routes.ALERTS.DEFINITIONS.replay_search(':definitionId'), component: EventDefinitionReplaySearchPage, parentComponent: App },
{ path: Routes.unqualified.ALERTS.replay_search(':alertId'), component: EventReplaySearchPage, parentComponent: App },
{ path: Routes.unqualified.ALERTS.DEFINITIONS.replay_search(':definitionId'), component: EventDefinitionReplaySearchPage, parentComponent: App },
],
enterpriseWidgets: [
{
Expand Down

0 comments on commit 638f75f

Please sign in to comment.