Only generate mentions string if there are mentions

Otherwise, a user replying to themselves without mentioning anyone else will insert a space at the beginning of the reply text area, hiding the placeholder.
This commit is contained in:
shadowfacts 2019-01-31 00:50:19 +00:00
parent fbe7af3d56
commit 3c4cf5ed11
1 changed files with 1 additions and 1 deletions

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 = {