Skip to content

Commit 70cc4ed

Browse files
authored
Merge pull request #3923 from d10c/d10c/compare-performance-rtjo
ComparePerformance: fix crash in RTJO mode
2 parents 824bf30 + 8102750 commit 70cc4ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/view/compare-performance/ComparePerformance.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ function PredicateRow(props: PredicateRowProps) {
798798
</>
799799
}
800800
/>
801-
{abbreviateRASteps(first?.steps ?? second!.steps).map(
801+
{abbreviateRASteps(first?.steps ?? second?.steps ?? []).map(
802802
(step, index) => (
803803
<PipelineStep
804804
key={index}

0 commit comments

Comments
 (0)