refs #347 Add a space after username in reply

This commit is contained in:
AkiraFukushima 2018-05-29 23:15:48 +09:00
parent fce446ecfb
commit d15800bbc2
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ const NewToot = {
const mentionAccounts = [message.account.acct].concat(message.mentions.map(a => a.acct))
.filter((a, i, self) => self.indexOf(a) === i)
.filter((a) => a !== rootState.TimelineSpace.account.username)
commit('updateStatus', `${mentionAccounts.map(m => `@${m}`).join(' ')}`)
commit('updateStatus', `${mentionAccounts.map(m => `@${m}`).join(' ')} `)
commit('changeModal', true)
},
changeModal ({ commit }, value) {