Skip to content
Snippets Groups Projects
Commit 73c78d4c authored by syuilo's avatar syuilo
Browse files

fix(client): 数式を含む投稿が表示されないのを修正

Fix #9535
parent 2654936c
No related branches found
No related tags found
No related merge requests found
...@@ -285,11 +285,11 @@ export default defineComponent({ ...@@ -285,11 +285,11 @@ export default defineComponent({
} }
case 'mathInline': { case 'mathInline': {
return [h('code', genEl(token.props.formula))]; return [h('code', token.props.formula)];
} }
case 'mathBlock': { case 'mathBlock': {
return [h('code', genEl(token.props.formula))]; return [h('code', token.props.formula)];
} }
case 'search': { case 'search': {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment