Skip to content

Commit

Permalink
tracer: Fix the event view heading key logic
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed Oct 15, 2024
1 parent 70daf4a commit 9d38918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/tracer/src/EventView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default function EventView({
const [index, threadId, style] = item;
const colorClass = "ansi-" + style.join("-");
return (
<div key={`{index}-heading`} className={"event-heading " + colorClass}>
<div key={`${index}-heading`} className={"event-heading " + colorClass}>
/* TID 0x{threadId.toString(16)} */
</div>
);
Expand Down

0 comments on commit 9d38918

Please sign in to comment.