Merge pull request #348 from h3poteto/iss-347
closes #347 Add a space after username in reply
This commit is contained in:
commit
4ab4f2df73
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue