fix image not displaying if no text
This commit is contained in:
parent
b904d2616a
commit
448d830c51
|
@ -188,7 +188,7 @@ const mfms = props.note.text
|
||||||
? extractMfmWithAnimation(mfm.parse(props.note.text))
|
? extractMfmWithAnimation(mfm.parse(props.note.text))
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
const hasMfm = $ref(mfms.length > 0);
|
const hasMfm = $ref(mfms && mfms.length > 0);
|
||||||
|
|
||||||
let disableMfm = $ref(hasMfm && defaultStore.state.animatedMfm);
|
let disableMfm = $ref(hasMfm && defaultStore.state.animatedMfm);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue