We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b23b2f commit 6185d8aCopy full SHA for 6185d8a
src/views/testingPerfs/content/runs/content/transactions/statistics/Transaction/index.tsx
@@ -107,7 +107,11 @@ const Transaction: React.FC<Props> = (props: Props) => {
107
const selectedTransactionRun = updatedTransaction.runs.find((t: any) => t.run.id === selectedRun.id);
108
109
if (selectedTransactionRun === undefined) {
110
- return <span>The selected run: {selectedRun.id} is not in the list of runs used for comparison</span>;
+ console.log(
111
+ `Unable to display transaction: ${transaction.name}, the selected run: ${selectedRun.id} is missing from the list of runs in for that transaction: `,
112
+ updatedTransaction,
113
+ );
114
+ return <> </>;
115
}
116
117
return (
0 commit comments