chore: re-order columns

This commit is contained in:
ahmadshaheer 2025-09-14 20:26:28 +04:30
parent 0976a572e3
commit 2b3c309c85

View File

@ -212,11 +212,11 @@ function SpanTable({
cell: renderNameCell,
},
{
id: 'timestamp',
header: 'Timestamp',
accessorKey: 'timestamp',
size: 180,
cell: renderTimestampCell,
id: 'service',
header: 'Service',
accessorKey: 'serviceName',
size: 120,
cell: renderServiceCell,
},
{
id: 'spanId',
@ -239,13 +239,7 @@ function SpanTable({
size: 80,
cell: renderStatusCodeCell,
},
{
id: 'service',
header: 'Service',
accessorKey: 'serviceName',
size: 120,
cell: renderServiceCell,
},
{
id: 'duration',
header: 'Duration',
@ -253,6 +247,13 @@ function SpanTable({
size: 120,
cell: renderDurationCell,
},
{
id: 'timestamp',
header: 'Timestamp',
accessorKey: 'timestamp',
size: 180,
cell: renderTimestampCell,
},
];
const flattenedData = useMemo(() => {