parent
b296108e5b
commit
326786e4ff
3 changed files with 6 additions and 1 deletions
|
@ -135,6 +135,7 @@ const List: React.FC<Props> = ({
|
|||
orderBy={orderBy}
|
||||
setOrderBy={setTopicsOrderBy}
|
||||
/>
|
||||
<th>Replication Factor</th>
|
||||
<th>Number of messages</th>
|
||||
<th>Size</th>
|
||||
<th>Type</th>
|
||||
|
|
|
@ -20,7 +20,7 @@ export interface ListItemProps {
|
|||
}
|
||||
|
||||
const ListItem: React.FC<ListItemProps> = ({
|
||||
topic: { name, internal, partitions, segmentSize },
|
||||
topic: { name, internal, partitions, segmentSize, replicationFactor },
|
||||
deleteTopic,
|
||||
clusterName,
|
||||
clearTopicMessages,
|
||||
|
@ -75,6 +75,7 @@ const ListItem: React.FC<ListItemProps> = ({
|
|||
</td>
|
||||
<td>{partitions?.length}</td>
|
||||
<td>{outOfSyncReplicas}</td>
|
||||
<td>{replicationFactor}</td>
|
||||
<td>{numberOfMessages}</td>
|
||||
<td>
|
||||
<BytesFormatted value={segmentSize} />
|
||||
|
|
|
@ -205,6 +205,9 @@ exports[`List when it does not have readonly flag matches the snapshot 1`] = `
|
|||
</span>
|
||||
</th>
|
||||
</ListHeaderCell>
|
||||
<th>
|
||||
Replication Factor
|
||||
</th>
|
||||
<th>
|
||||
Number of messages
|
||||
</th>
|
||||
|
|
Loading…
Add table
Reference in a new issue