Refactor content status terminology and enhance cluster serializers with idea and content counts

This commit is contained in:
Desktop
2025-11-11 18:51:32 +05:00
parent b321c99089
commit a7880c3818
10 changed files with 118 additions and 39 deletions

View File

@@ -120,6 +120,13 @@ export const createClustersPageConfig = (
width: '120px',
render: (value: number) => value.toLocaleString(),
},
{
key: 'ideas_count',
label: 'Ideas',
sortable: false,
width: '120px',
render: (value: number) => value.toLocaleString(),
},
{
key: 'volume',
label: 'Volume',
@@ -170,8 +177,8 @@ export const createClustersPageConfig = (
},
},
{
key: 'mapped_pages',
label: 'Mapped Pages',
key: 'content_count',
label: 'Content',
sortable: false,
width: '120px',
render: (value: number) => value.toLocaleString(),