diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2022-05-31 17:46:31 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2022-05-31 17:46:31 +0000 |
| commit | 1418054b53003a6ca4fe8d88ee976993f96d967a (patch) | |
| tree | ead4f4f4e6dc575b9f94395c4ac7b164edbb5a6b /src/components/account_actions/account_actions.js | |
| parent | 48c739027cd554f30c73502bed91951673f11ec7 (diff) | |
| parent | 152302cbff4e311da2922021efa9c326ceca6570 (diff) | |
Merge branch 'from/develop/tusooa/fix-open-chat' into 'develop'
Fix Open Chat button
See merge request pleroma/pleroma-fe!1532
Diffstat (limited to 'src/components/account_actions/account_actions.js')
| -rw-r--r-- | src/components/account_actions/account_actions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/account_actions/account_actions.js b/src/components/account_actions/account_actions.js index e53c4f77..99762562 100644 --- a/src/components/account_actions/account_actions.js +++ b/src/components/account_actions/account_actions.js @@ -40,7 +40,7 @@ const AccountActions = { openChat () { this.$router.push({ name: 'chat', - params: { recipient_id: this.user.id } + params: { username: this.$store.state.users.currentUser.screen_name, recipient_id: this.user.id } }) } }, |
