Skip to content

Commit

Permalink
[APM] Fix transaction sample on error page (#34048)
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv authored Mar 29, 2019
1 parent 2489180 commit 979c8a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function TransactionLink({
return <Fragment>{NOT_AVAILABLE_LABEL}</Fragment>;
}

const isSampled = transaction.sampled;
const isSampled = transaction.transaction.sampled;
if (!isSampled) {
return <Fragment>{transaction.transaction.id}</Fragment>;
}
Expand Down

0 comments on commit 979c8a7

Please sign in to comment.