Skip to content

Commit

Permalink
refs #347 Add a space after username in reply
Browse files Browse the repository at this point in the history
  • Loading branch information
h3poteto committed May 29, 2018
1 parent fce446e commit d15800b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/store/TimelineSpace/Modals/NewToot.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit d15800b

Please sign in to comment.