summaryrefslogtreecommitdiff
path: root/packages/frontend/src
diff options
context:
space:
mode:
Diffstat (limited to 'packages/frontend/src')
-rw-r--r--packages/frontend/src/components/global/MkMfm.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/global/MkMfm.ts b/packages/frontend/src/components/global/MkMfm.ts
index a1448a0cb6..4db27a3c35 100644
--- a/packages/frontend/src/components/global/MkMfm.ts
+++ b/packages/frontend/src/components/global/MkMfm.ts
@@ -83,7 +83,7 @@ export default function MkMfm(props: MfmProps, { emit }: { emit: SetupContext<Mf
return c.match(/^[0-9a-f]{3,6}$/i) ? c : null;
};
- const useAnim = prefer.s.advancedMfm && prefer.s.animatedMfm;
+ const useAnim = props.isAnim ?? (prefer.s.advancedMfm && prefer.s.animatedMfm);
const isBlock = props.isBlock ?? false;
const SkFormula = defineAsyncComponent(() => import('@/components/SkFormula.vue'));