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