Skip to content

Commit

Permalink
Fix wrong following flow duration
Browse files Browse the repository at this point in the history
Change-Id: Icf022039d7baf2f16cbc9d328a11f89832c9f616
  • Loading branch information
Alexander Timin committed Sep 16, 2024
1 parent 76c9a33 commit 4574399
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 4574399

Please sign in to comment.