浏览代码

Add a missing space for partitions count (#2803)

* Add a missing space for partitions count

* Update BrokersList.tsx
Roman Zabaluev 2 年之前
父节点
当前提交
9f5d9126da
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      kafka-ui-react-app/src/components/Brokers/BrokersList/BrokersList.tsx

+ 1 - 0
kafka-ui-react-app/src/components/Brokers/BrokersList/BrokersList.tsx

@@ -92,6 +92,7 @@ const BrokersList: React.FC = () => {
               onlinePartitionCount
             )}
             <Metrics.LightText>
+              {' '}
               of {(onlinePartitionCount || 0) + (offlinePartitionCount || 0)}
             </Metrics.LightText>
           </Metrics.Indicator>