Skip to content

Commit

Permalink
Fixes missing width on inline telemetry
Browse files Browse the repository at this point in the history
We were special casing the missing annotations case but had already
corrected for it elsewhere it would appear.
  • Loading branch information
elijahbenizzy committed Feb 24, 2025
1 parent 17c66e1 commit a1803e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion telemetry/ui/src/components/routes/app/StepList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ const StepSubTableRow = (props: {
</div>
)}
</TableCell>
{props.displayAnnotations && <TableCell className="" colSpan={2} />}
{<TableCell className="" colSpan={2} />}
</>
) : (
<TableCell colSpan={5}></TableCell>
Expand Down

0 comments on commit a1803e5

Please sign in to comment.