Skip to content

Commit

Permalink
Expose label in SettingsRow component
Browse files Browse the repository at this point in the history
  • Loading branch information
fluiddot committed Jun 11, 2024
1 parent c9ba76d commit bc37161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/content-tab-settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ interface ContentTabSettingsProps {

function SettingsRow( { children, label }: PropsWithChildren< { label: string } > ) {
return (
<tr className="align-top">
<tr className="align-top" aria-label={ label }>
<th className="text-nowrap text-a8c-gray-50 pb-4 ltr:pr-6 rtl:pl-6 ltr:text-left rtl:text-right font-normal">
{ label }
</th>
Expand Down

0 comments on commit bc37161

Please sign in to comment.