@@ -256,7 +257,7 @@ const TopicList: FC = () => {
},
{
id: 'size',
- accessorFn: (topic) => topic.logDirSummary?.totalSizeBytes ?? 0,
+ accessorFn: (topic) => Number(topic.logDirSummary?.totalSizeBytes ?? 0),
header: ({ column }) =>
,
meta: { headWidth: 'sm' as const },
cell: ({ row: { original: topic } }) => renderLogDirSummary(topic.logDirSummary),
@@ -272,7 +273,7 @@ const TopicList: FC = () => {
render={