소스 검색

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

Fix Open Chat button

See merge request pleroma/pleroma-fe!1532
HJ 2 년 전
부모
커밋
1418054b53
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/components/account_actions/account_actions.js

+ 1 - 1
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 }
       })
     }
   },