fix spacing before hashtags

This commit is contained in:
Henry Jameson 2021-08-23 21:36:18 +03:00 committed by Sam Therapy
parent 88b81dcaf5
commit 0645d06f91
Signed by: sam
GPG key ID: 4D8B07C18F31ACBD

View file

@ -181,9 +181,12 @@ export default Vue.component('RichContent', {
if (children !== undefined) {
return [
opener,
[mentionsLinePadding].concat(children.map(processItem)),
closer
'',
[
mentionsLinePadding,
[opener, children.map(processItem), closer]
],
''
]
} else {
return ['', [mentionsLinePadding, item], '']