mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-04 01:09:20 +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) => (
|
||||
<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…
Add table
Add a link
Reference in a new issue