Skip to content

Commit 4827716

Browse files
committed
Read messages count from backend
1 parent 37e3600 commit 4827716

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

frontend/src/components/Topics/List/TopicTable.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ const TopicTable: React.FC = () => {
7575
id: TopicColumnsToSort.MESSAGES_COUNT,
7676
header: 'Number of messages',
7777
accessorKey: 'messagesCount',
78+
cell: (args) => {
79+
return args.getValue() ?? 'N/A';
80+
},
7881
size: 146,
7982
},
8083
{

0 commit comments

Comments
 (0)