This is an automated email from the ASF dual-hosted git repository.
lizhimins pushed a commit to branch rocketmq-studio
in repository https://gitbox.apache.org/repos/asf/rocketmq-dashboard.git
The following commit(s) were added to refs/heads/rocketmq-studio by this push:
new 955a8648 fix: redirect legacy alert management route (#1494)
955a8648 is described below
commit 955a86489066c242de2dcf609bac9ec3fc7ddd21
Author: aias00 <[email protected]>
AuthorDate: Tue Aug 11 20:17:51 2026 +0800
fix: redirect legacy alert management route (#1494)
---
web/src/App.tsx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/web/src/App.tsx b/web/src/App.tsx
index 949fbbe2..5c15d72f 100644
--- a/web/src/App.tsx
+++ b/web/src/App.tsx
@@ -49,7 +49,6 @@ const LiteTopicPage = lazy(() =>
import('./pages/studio/LiteTopic'));
const GroupManagementPage = lazy(() =>
import('./pages/studio/GroupManagement'));
const BrokerClusterPage = lazy(() => import('./pages/studio/BrokerCluster'));
const SslSettingsPage = lazy(() => import('./pages/studio/SslSettings'));
-const AlertManagementPage = lazy(() =>
import('./pages/studio/AlertManagement'));
const GrafanaDashboardsPage = lazy(() =>
import('./pages/studio/GrafanaDashboards'));
const ProducerPage = lazy(() => import('./pages/studio/Producer'));
const OpsPage = lazy(() => import('./pages/studio/Ops'));
@@ -177,7 +176,7 @@ function App() {
<Route path="studio/group-management"
element={<GroupManagementPage />} />
<Route path="studio/broker-cluster" element={<BrokerClusterPage
/>} />
<Route path="studio/ssl-settings" element={<SslSettingsPage />} />
- <Route path="studio/alert-management"
element={<AlertManagementPage />} />
+ <Route path="studio/alert-management" element={<Navigate
to="/ops/alerts" replace />} />
<Route path="studio/producer" element={<ProducerPage />} />
<Route path="studio/ops" element={<OpsPage />} />
<Route path="ops/alert-rule-templates"
element={<AlertRuleAssetsPage />} />