Merge pull request 'Fix media not displaying when no body text' (#10121) from Freeplay/calckey:notes into develop
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/10121
This commit is contained in:
commit
b669986060
|
@ -188,7 +188,7 @@ const mfms = props.note.text
|
|||
? extractMfmWithAnimation(mfm.parse(props.note.text))
|
||||
: null;
|
||||
|
||||
const hasMfm = $ref(mfms.length > 0);
|
||||
const hasMfm = $ref(mfms && mfms.length > 0);
|
||||
|
||||
let disableMfm = $ref(hasMfm && defaultStore.state.animatedMfm);
|
||||
|
||||
|
@ -340,6 +340,8 @@ function focusFooter(ev) {
|
|||
}
|
||||
> :deep(button) {
|
||||
margin-top: 10px;
|
||||
margin-left: 0;
|
||||
margin-right: .4rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue