Skip to content

Commit

Permalink
Merge branch 'main' into ImageButton-component
Browse files Browse the repository at this point in the history
  • Loading branch information
AyIong authored Aug 14, 2024
2 parents 6c89a9e + 05264e6 commit 2541249
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/components/LabeledList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ import { Tooltip } from './Tooltip';

export function LabeledList(props: PropsWithChildren) {
const { children } = props;
return <table className="LabeledList">{children}</table>;
return (
<table className="LabeledList">
<tbody>{children}</tbody>
</table>
);
}

type LabeledListItemProps = Partial<{
Expand Down

0 comments on commit 2541249

Please sign in to comment.