diff --git a/web/ui/react-app/src/App.tsx b/web/ui/react-app/src/App.tsx index 2666adef96..f3fc21ea6a 100755 --- a/web/ui/react-app/src/App.tsx +++ b/web/ui/react-app/src/App.tsx @@ -15,6 +15,10 @@ const App: FC = ({ pathPrefix }) => { + {/* + NOTE: Any route added here needs to also be added to the list of + React-handled router paths ("reactRouterPaths") in /web/web.go. + */} diff --git a/web/web.go b/web/web.go index c2fcb24db1..03fa387577 100644 --- a/web/web.go +++ b/web/web.go @@ -84,6 +84,7 @@ var ( "/service-discovery", "/status", "/targets", + "/tsdb-status", "/version", } )