Skip to content

Commit bc37161

Browse files
committed
Expose label in SettingsRow component
1 parent c9ba76d commit bc37161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/content-tab-settings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface ContentTabSettingsProps {
1717

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

0 commit comments

Comments
 (0)