Change the text-only home logo to an H1

Fixes https://meta.discourse.org/t/77892
This commit is contained in:
Michael Howell 2018-01-12 23:10:25 +00:00
parent 674013129a
commit 66d5b9f74c
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ export default createWidget('home-logo', {
} else if (logoUrl.length) {
return h('img#site-logo.logo-big', { key: 'logo-big', attributes: { src: logoUrl, alt: title } });
} else {
return h('h2#site-text-logo.text-logo', { key: 'logo-text' }, title);
return h('h1#site-text-logo.text-logo', { key: 'logo-text' }, title);
}
},