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 dc5492b commit 367d538Copy full SHA for 367d538
apps/webapp/app/presenters/v3/RunPresenter.server.ts
@@ -159,7 +159,10 @@ export class RunPresenter {
159
const offset = millisecondsToNanoseconds(
160
n.data.startTime.getTime() - treeRootStartTimeMs
161
);
162
- totalDuration = Math.max(totalDuration, offset + n.data.duration);
+ //only let non-debug events extend the total duration
163
+ if (!n.data.isDebug) {
164
+ totalDuration = Math.max(totalDuration, offset + n.data.duration);
165
+ }
166
return {
167
...n,
168
data: {
0 commit comments