Fix heading display

This commit is contained in:
Benjamin Bädorf 2022-03-11 18:32:31 +01:00
parent f8f6564b60
commit db2190f832
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C
2 changed files with 2 additions and 1 deletions

View file

@ -22,6 +22,7 @@ html {
--fg: var(--black); --fg: var(--black);
--interact: #3f9cff; --interact: #3f9cff;
--interact-lite: #3f9cff;
--z-context-menu: 3000; --z-context-menu: 3000;
} }

View file

@ -36,7 +36,7 @@ export default defineComponent({
return () => h( return () => h(
`h${props.data.level}`, `h${props.data.level}`,
{ {
class: classes, class: classes.value,
innerHTML: props.data.value, innerHTML: props.data.value,
}, },
); );