|
@@ -20,7 +20,7 @@ export interface ListItemProps {
|
|
}
|
|
}
|
|
|
|
|
|
const ListItem: React.FC<ListItemProps> = ({
|
|
const ListItem: React.FC<ListItemProps> = ({
|
|
- topic: { name, internal, partitions, segmentSize },
|
|
|
|
|
|
+ topic: { name, internal, partitions, segmentSize, replicationFactor },
|
|
deleteTopic,
|
|
deleteTopic,
|
|
clusterName,
|
|
clusterName,
|
|
clearTopicMessages,
|
|
clearTopicMessages,
|
|
@@ -75,6 +75,7 @@ const ListItem: React.FC<ListItemProps> = ({
|
|
</td>
|
|
</td>
|
|
<td>{partitions?.length}</td>
|
|
<td>{partitions?.length}</td>
|
|
<td>{outOfSyncReplicas}</td>
|
|
<td>{outOfSyncReplicas}</td>
|
|
|
|
+ <td>{replicationFactor}</td>
|
|
<td>{numberOfMessages}</td>
|
|
<td>{numberOfMessages}</td>
|
|
<td>
|
|
<td>
|
|
<BytesFormatted value={segmentSize} />
|
|
<BytesFormatted value={segmentSize} />
|