Skip to content

Commit

Permalink
Merge "Fix wrong following flow duration" into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Timin authored and Gerrit Code Review committed Sep 16, 2024
2 parents 56b5e6f + 4574399 commit b8c36d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
82b026182d09d325c15160185b636917a54ab2431f0f7cb493cd5341bd7798c5
a2c3709588eb38705f96880738b552aa43439157cb3cc0f53915cc98dc684b1e
2 changes: 1 addition & 1 deletion ui/src/frontend/thread_slice_details_tab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ export class ThreadSliceDetailsTab extends BottomTab<ThreadSliceDetailsTabConfig
title: 'Delay',
render: (flow: Flow) =>
m(DurationWidget, {
dur: flow.end.sliceEndTs - flow.end.sliceStartTs,
dur: flow.end.sliceStartTs - flow.begin.sliceEndTs,
}),
},
{
Expand Down

0 comments on commit b8c36d8

Please sign in to comment.