Skip to content

Commit

Permalink
Fixes embedded sub-table-row
Browse files Browse the repository at this point in the history
Previously we had a weird flex that caused the table row to be overly
tall. This fixes it.
  • Loading branch information
elijahbenizzy committed Dec 16, 2024
1 parent 10ffdf3 commit 4a62606
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 @@ -652,7 +652,7 @@ const StepSubTableRow = (props: {
setCurrentSelectedIndex={setCurrentSelectedIndex}
>
<TableCell
className={` ${lightText} w-10 min-w-10 ${props.displaySpanID ? '' : 'text-opacity-0'} flex flex-row`}
className={` ${lightText} w-10 min-w-10 ${props.displaySpanID ? '' : 'text-opacity-0'}`}
>
<RecursionDepthPadding depth={props.depth}>
<span>{spanIDUniqueToAction}</span>
Expand Down

0 comments on commit 4a62606

Please sign in to comment.