Merge branch 'patch-1' into 'develop'

Only generate mentions string if there are mentions

See merge request pleroma/pleroma-fe!502
This commit is contained in:
Shpuld Shpludson 2019-01-31 15:06:26 +00:00
commit 59d47aa44a

View file

@ -16,7 +16,7 @@ const buildMentionsString = ({user, attentions}, currentUser) => {
return `@${attention.screen_name}`
})
return mentions.join(' ') + ' '
return mentions.length > 0 ? mentions.join(' ') + ' ' : ''
}
const PostStatusForm = {