Skip to content

Commit

Permalink
fix(trace): remove href from parent txn a element (#68855)
Browse files Browse the repository at this point in the history
No need for a blank hash on this a link
  • Loading branch information
JonasBa committed Apr 15, 2024
1 parent 37c9c24 commit 90b4364
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export function ErrorNodeDetails({
{parentTransaction ? (
<Row title="Parent Transaction">
<td className="value">
<a href="#" onClick={() => onParentClick(parentTransaction)}>
<a onClick={() => onParentClick(parentTransaction)}>
{getTraceTabTitle(parentTransaction)}
</a>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export function MissingInstrumentationNodeDetails({
{parentTransaction ? (
<Row title="Parent Transaction">
<td className="value">
<a href="#" onClick={() => onParentClick(parentTransaction)}>
<a onClick={() => onParentClick(parentTransaction)}>
{getTraceTabTitle(parentTransaction)}
</a>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function ParentAutogroupNodeDetails({
{parentTransaction ? (
<Row title="Parent Transaction">
<td className="value">
<a href="#" onClick={() => onParentClick(parentTransaction)}>
<a onClick={() => onParentClick(parentTransaction)}>
{getTraceTabTitle(parentTransaction)}
</a>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function SiblingAutogroupNodeDetails({
{parentTransaction ? (
<Row title="Parent Transaction">
<td className="value">
<a href="#" onClick={() => onParentClick(parentTransaction)}>
<a onClick={() => onParentClick(parentTransaction)}>
{getTraceTabTitle(parentTransaction)}
</a>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ export function TransactionNodeDetails({
{parentTransaction ? (
<Row title="Parent Transaction">
<td className="value">
<a href="#" onClick={() => onParentClick(parentTransaction)}>
<a onClick={() => onParentClick(parentTransaction)}>
{getTraceTabTitle(parentTransaction)}
</a>
</td>
Expand Down

0 comments on commit 90b4364

Please sign in to comment.