Skip to content

Commit ab79adb

Browse files
authored
Fix code > link a11y issue in graphql (#55778)
1 parent 8398175 commit ab79adb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/graphql/components/Table.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export function Table({ fields }: Props) {
2626
<td>
2727
<p>
2828
<code>{field.name}</code> (
29-
<code>
29+
<code className="color-bg-transparent">
3030
<Link
3131
href={field.href}
3232
makeAbsolute
@@ -75,7 +75,7 @@ export function Table({ fields }: Props) {
7575
<li className="border-top mt-2">
7676
<p className="mt-2">
7777
<code>{argument.name}</code> (
78-
<code>
78+
<code className="color-bg-transparent">
7979
<Link href={argument.type.href} makeAbsolute>
8080
{argument.type.name}
8181
</Link>

0 commit comments

Comments
 (0)