We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10144ca commit f0b2870Copy full SHA for f0b2870
static/app/views/performance/newTraceDetails/traceWaterfallState.tsx
@@ -51,7 +51,7 @@ function TraceEmpty() {
51
// and be navigated to a trace that doesn't contain any data yet. We add a 2
52
// minute buffer to account for this.
53
const message =
54
- timestamp && new Date(timestamp * 1000) > new Date(Date.now() - 2 * 60 * 1000)
+ timestamp && new Date(timestamp * 1000) >= new Date(Date.now() - 2 * 60 * 1000)
55
? t(
56
'We could still be ingesting this trace. Please wait a few seconds and refresh.'
57
)
0 commit comments