mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-06 10:20:09 +02:00
fix(v2): fix minor a11y issue with headings (#4792)
This commit is contained in:
parent
be9f9d6df7
commit
d2a455992d
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ function Footer(): JSX.Element | null {
|
||||||
{links.map((linkItem, i) => (
|
{links.map((linkItem, i) => (
|
||||||
<div key={i} className="col footer__col">
|
<div key={i} className="col footer__col">
|
||||||
{linkItem.title != null ? (
|
{linkItem.title != null ? (
|
||||||
<h4 className="footer__title">{linkItem.title}</h4>
|
<div className="footer__title">{linkItem.title}</div>
|
||||||
) : null}
|
) : null}
|
||||||
{linkItem.items != null &&
|
{linkItem.items != null &&
|
||||||
Array.isArray(linkItem.items) &&
|
Array.isArray(linkItem.items) &&
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue