commit: 152302cbff4e311da2922021efa9c326ceca6570
parent c93adf2e9a8ac6bfbe1e6cebde1d189475b3cb58
Author: Tusooa Zhu <tusooa@kazv.moe>
Date: Wed, 25 May 2022 13:34:26 -0400
Fix Open Chat button
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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 }
})
}
},