fix theme-color apply (#8464)

This commit is contained in:
tamaina 2022-04-03 13:56:00 +09:00 committed by GitHub
parent 408d54f2eb
commit e47a8bf666
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,14 +51,14 @@ export function applyTheme(theme: Theme, persist = true) {
if (_theme.base) {
const base = [lightTheme, darkTheme].find(x => x.id === _theme.base);
_theme.props = Object.assign({}, base.props, _theme.props);
if (base) _theme.props = Object.assign({}, base.props, _theme.props);
}
const props = compile(_theme);
for (const tag of document.head.children) {
if (tag.tagName === 'META' && tag.getAttribute('name') === 'theme-color') {
tag.setAttribute('content', props['html']);
tag.setAttribute('content', props['htmlThemeColor']);
break;
}
}