Browse Source

Merge branch 'master' into backend-topics-changing

Roman Nedzvetskiy 5 năm trước cách đây
mục cha
commit
ee163138f8

+ 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>