From d15800bbc271ba985e3cef0572d2122bbb998f92 Mon Sep 17 00:00:00 2001 From: AkiraFukushima Date: Tue, 29 May 2018 23:15:48 +0900 Subject: [PATCH] refs #347 Add a space after username in reply --- src/renderer/store/TimelineSpace/Modals/NewToot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/store/TimelineSpace/Modals/NewToot.js b/src/renderer/store/TimelineSpace/Modals/NewToot.js index e4a5e8d8..2053ef7e 100644 --- a/src/renderer/store/TimelineSpace/Modals/NewToot.js +++ b/src/renderer/store/TimelineSpace/Modals/NewToot.js @@ -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) {