소스 검색

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>