|
@@ -20,7 +20,14 @@ export interface ListItemProps {
|
|
|
}
|
|
|
|
|
|
const ListItem: React.FC<ListItemProps> = ({
|
|
|
- topic: { name, internal, partitions, segmentSize, replicationFactor },
|
|
|
+ topic: {
|
|
|
+ name,
|
|
|
+ internal,
|
|
|
+ partitions,
|
|
|
+ segmentSize,
|
|
|
+ replicationFactor,
|
|
|
+ cleanUpPolicy,
|
|
|
+ },
|
|
|
deleteTopic,
|
|
|
clusterName,
|
|
|
clearTopicMessages,
|
|
@@ -85,6 +92,9 @@ const ListItem: React.FC<ListItemProps> = ({
|
|
|
{internal ? 'Internal' : 'External'}
|
|
|
</div>
|
|
|
</td>
|
|
|
+ <td>
|
|
|
+ <span className="tag is-info">{cleanUpPolicy || 'Unknown'}</span>
|
|
|
+ </td>
|
|
|
<td className="topic-action-block">
|
|
|
{!internal && !isReadOnly ? (
|
|
|
<>
|