浏览代码

Merge branch 'master' into backend-topics-changing

Roman Nedzvetskiy 5 年之前
父节点
当前提交
ee163138f8
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      kafka-ui-react-app/src/components/Topics/Details/Details.tsx

+ 3 - 3
kafka-ui-react-app/src/components/Topics/Details/Details.tsx

@@ -68,17 +68,17 @@ const Details: React.FC<Props> = ({ clusterName, topicName }) => {
         <Switch>
           <Route
             exact
-            path="/clusters/:clusterName/topics/:topicName/messages"
+            path="/ui/clusters/:clusterName/topics/:topicName/messages"
             component={MessagesContainer}
           />
           <Route
             exact
-            path="/clusters/:clusterName/topics/:topicName/settings"
+            path="/ui/clusters/:clusterName/topics/:topicName/settings"
             component={SettingsContainer}
           />
           <Route
             exact
-            path="/clusters/:clusterName/topics/:topicName"
+            path="/ui/clusters/:clusterName/topics/:topicName"
             component={OverviewContainer}
           />
         </Switch>