Skip to content

Commit 35b2d4a

Browse files
Fix activty 30days count sorting (l2beat#10173)
Co-authored-by: J-Mick <[email protected]>
1 parent 83925ff commit 35b2d4a

File tree

1 file changed

+1
-1
lines changed
  • packages/frontend/src/pages/scaling/activity/components/table

1 file changed

+1
-1
lines changed

packages/frontend/src/pages/scaling/activity/components/table/columns.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export const getScalingActivityColumns = (
128128
tooltip: `Shows the maximum sustained ${metric === 'uops' ? 'UOPS' : 'TPS'}, calculated as an average over the count for a day.`,
129129
},
130130
}),
131-
columnHelper.accessor('data.summedCount', {
131+
columnHelper.accessor('data.summedCount.value', {
132132
header: '30D Count',
133133
cell: (ctx) => {
134134
const data = ctx.row.original.data

0 commit comments

Comments
 (0)