merge: rename our components - fixes #534 (!563)

View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/563

Closes #534

Approved-by: Marie <marie@kaifa.ch>
Approved-by: Tess K <me@thvxl.se>
This commit is contained in:
dakkar 2024-07-29 10:44:04 +00:00
commit cc48b26c1b
6 changed files with 5 additions and 5 deletions

View file

@ -80,7 +80,7 @@ export default function (props: MfmProps, { emit }: { emit: SetupContext<MfmEven
const isBlock = props.isBlock ?? false;
const MkFormula = defineAsyncComponent(() => import('@/components/MkFormula.vue'));
const SkFormula = defineAsyncComponent(() => import('@/components/SkFormula.vue'));
/**
* Gen Vue Elements from MFM AST
@ -499,14 +499,14 @@ export default function (props: MfmProps, { emit }: { emit: SetupContext<MfmEven
}
case 'mathInline': {
return [h('bdi', h(MkFormula, {
return [h('bdi', h(SkFormula, {
formula: token.props.formula,
block: false,
}))];
}
case 'mathBlock': {
return [h('bdi', { class: 'block' }, h(MkFormula, {
return [h('bdi', { class: 'block' }, h(SkFormula, {
formula: token.props.formula,
block: true,
}))];