Skip to content

Commit

Permalink
Issue 698 (An uncaught exception occurred: Uncaught Error: Topmost tr…
Browse files Browse the repository at this point in the history
…ack group is unrendered when jumping to thread via link) (#80)
  • Loading branch information
ALevansSamsung authored Nov 16, 2023
1 parent c2aa6fb commit ddcc119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/common/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,7 @@ export function getContainingTrackIds(state: State, trackId: string): null|
}

const result = [];
while (groupId) {
while (groupId && groupId !== SCROLLING_TRACK_GROUP) {
result.unshift(groupId);
const trackGroup: TrackGroupState = state.trackGroups[groupId];
groupId = trackGroup?.parentGroup;
Expand Down

0 comments on commit ddcc119

Please sign in to comment.