forked from AkkomaGang/akkoma-fe
fix spacing before hashtags
This commit is contained in:
parent
39494439d3
commit
4d73eaa6ce
1 changed files with 6 additions and 3 deletions
|
@ -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], '']
|
||||
|
|
Loading…
Reference in a new issue