logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 4d73eaa6cef7a8b81bcca719755b11c05717d395
parent 39494439d359fa058079c9325efdff244a7e7890
Author: Henry Jameson <me@hjkos.com>
Date:   Mon, 23 Aug 2021 21:36:18 +0300

fix spacing before hashtags

Diffstat:

Msrc/components/rich_content/rich_content.jsx9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/components/rich_content/rich_content.jsx b/src/components/rich_content/rich_content.jsx @@ -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], '']