We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37e3600 commit 4827716Copy full SHA for 4827716
frontend/src/components/Topics/List/TopicTable.tsx
@@ -75,6 +75,9 @@ const TopicTable: React.FC = () => {
75
id: TopicColumnsToSort.MESSAGES_COUNT,
76
header: 'Number of messages',
77
accessorKey: 'messagesCount',
78
+ cell: (args) => {
79
+ return args.getValue() ?? 'N/A';
80
+ },
81
size: 146,
82
},
83
{
0 commit comments