We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97c8ab0 commit c894543Copy full SHA for c894543
src/sentry/static/sentry/app/views/performance/utils.tsx
@@ -52,7 +52,7 @@ export function addRoutePerformanceContext(selection: GlobalSelection) {
52
selection.datetime.start,
53
selection.datetime.end
54
);
55
- const seconds = days * 86400;
+ const seconds = Math.floor(days * 86400);
56
57
transaction?.setTag('statsPeriod', seconds.toString());
58
}
0 commit comments