Merge pull request #348 from h3poteto/iss-347

closes #347 Add a space after username in reply
This commit is contained in:
AkiraFukushima 2018-05-29 23:25:17 +09:00 committed by GitHub
commit 4ab4f2df73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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) {