Merge branch 'from/develop/tusooa/fix-open-chat' into 'develop'

Fix Open Chat button

See merge request pleroma/pleroma-fe!1532
This commit is contained in:
HJ 2022-05-31 17:46:31 +00:00
commit 1418054b53

View file

@ -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 }
})
}
},