Skip to content

Commit

Permalink
fix: correct local run description
Browse files Browse the repository at this point in the history
  • Loading branch information
esbena committed Nov 15, 2024
1 parent 3b640c6 commit 44dee31
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ export const ComparePerformanceLocalRunDescription = ({
}: Props) => {
return (
<div>
(fromQuery?
<strong>
Comparison of local runs of {fromQuery} and {toQuery}
</strong>
: Local run of {toQuery})
{fromQuery ? (
<strong>
Comparison of local runs of {fromQuery} and {toQuery}
</strong>
) : (
<strong>Local run of {toQuery}</strong>
)}
</div>
);
};

0 comments on commit 44dee31

Please sign in to comment.