diff --git a/kafka-ui-react-app/src/components/Topics/Details/Details.tsx b/kafka-ui-react-app/src/components/Topics/Details/Details.tsx index 74185608cc..b852290b40 100644 --- a/kafka-ui-react-app/src/components/Topics/Details/Details.tsx +++ b/kafka-ui-react-app/src/components/Topics/Details/Details.tsx @@ -2,7 +2,12 @@ import React from 'react'; import { ClusterName, Topic, TopicDetails, TopicName } from 'redux/interfaces'; import Breadcrumb from 'components/common/Breadcrumb/Breadcrumb'; import { NavLink, Switch, Route } from 'react-router-dom'; -import { clusterTopicsPath, clusterTopicSettingsPath, clusterTopicPath, clusterTopicMessagesPath } from 'lib/paths'; +import { + clusterTopicsPath, + clusterTopicSettingsPath, + clusterTopicPath, + clusterTopicMessagesPath, +} from 'lib/paths'; import OverviewContainer from './Overview/OverviewContainer'; import MessagesContainer from './Messages/MessagesContainer'; import SettingsContainer from './Settings/SettingsContainer'; @@ -12,17 +17,16 @@ interface Props extends Topic, TopicDetails { topicName: TopicName; } -const Details: React.FC = ({ - clusterName, - topicName, -}) => { +const Details: React.FC = ({ clusterName, topicName }) => { return (
- + {topicName}
@@ -57,9 +61,21 @@ const Details: React.FC = ({
- - - + + +