Browse Source

Add a missing space for partitions count (#2803)

* Add a missing space for partitions count

* Update BrokersList.tsx
Roman Zabaluev 2 năm trước cách đây
mục cha
commit
9f5d9126da

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