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) {
|
if (children !== undefined) {
|
||||||
return [
|
return [
|
||||||
opener,
|
'',
|
||||||
[mentionsLinePadding].concat(children.map(processItem)),
|
[
|
||||||
closer
|
mentionsLinePadding,
|
||||||
|
[opener, children.map(processItem), closer]
|
||||||
|
],
|
||||||
|
''
|
||||||
]
|
]
|
||||||
} else {
|
} else {
|
||||||
return ['', [mentionsLinePadding, item], '']
|
return ['', [mentionsLinePadding, item], '']
|
||||||
|
|
Loading…
Reference in a new issue