mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
fix(v2): fix minor a11y issue with headings (#4792)
This commit is contained in:
parent
be9f9d6df7
commit
d2a455992d
|
|
@ -71,7 +71,7 @@ function Footer(): JSX.Element | null {
|
|||
{links.map((linkItem, i) => (
|
||||
<div key={i} className="col footer__col">
|
||||
{linkItem.title != null ? (
|
||||
<h4 className="footer__title">{linkItem.title}</h4>
|
||||
<div className="footer__title">{linkItem.title}</div>
|
||||
) : null}
|
||||
{linkItem.items != null &&
|
||||
Array.isArray(linkItem.items) &&
|
||||
|
|
|
|||
Loading…
Reference in New Issue