Skip to content

Commit

Permalink
select request
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonLaster committed Sep 24, 2024
1 parent cfb2420 commit ff20b8b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/ui/components/NetworkMonitor/NetworkMonitorListRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,8 @@ function RequestRow({
<button
className={styles.ServerSeekJumpButton}
data-test-name="Network-RequestRow-SeekButton"
onClick={(e) => dispatch(
onClick={(e) => {
dispatch(
seek({
executionPoint: transformSupplementalId(
targetPoint.point.point,
Expand All @@ -287,7 +288,9 @@ function RequestRow({
openSource: true,
time: targetPoint.point.time,
})
)
);
selectRequest(request);
}
}
tabIndex={0}
style={{
Expand Down

0 comments on commit ff20b8b

Please sign in to comment.