Skip to content

Commit 89639b2

Browse files
authored
feat: convert duration ms to string to be passed to getYAxisFormattedValue (#9539)
1 parent 785ae9f commit 89639b2

File tree

1 file changed

+1
-1
lines changed
  • frontend/src/pages/TracesFunnelDetails/components/FunnelResults

1 file changed

+1
-1
lines changed

frontend/src/pages/TracesFunnelDetails/components/FunnelResults/utils.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ export const topTracesTableColumns = [
1616
title: 'STEP TRANSITION DURATION',
1717
dataIndex: 'duration_ms',
1818
key: 'duration_ms',
19-
render: (value: string): string => getYAxisFormattedValue(value, 'ms'),
19+
render: (value: string): string => getYAxisFormattedValue(`${value}`, 'ms'),
2020
},
2121
];

0 commit comments

Comments
 (0)