Skip to content

Commit

Permalink
feat(ui): display metadata on consumer group
Browse files Browse the repository at this point in the history
close #988
  • Loading branch information
tchiotludo committed Jan 26, 2022
1 parent df7f6af commit 0eb3fc9
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,15 @@ class ConsumerGroupTopics extends Root {
return this.handleOptional(obj.offset);
}
},
{
id: 'metadata',
accessor: 'metadata',
colName: 'Metadata',
type: 'text',
cell: obj => {
return this.handleOptional(obj.metadata);
}
},
{
id: 'lag',
accessor: 'lag',
Expand Down

0 comments on commit 0eb3fc9

Please sign in to comment.