diff options
| author | Shpuld Shpludson <shp@cock.li> | 2021-01-12 16:01:15 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2021-01-12 16:01:15 +0000 |
| commit | f52bca04c9fe272daf81d4c4f839234ce6a80944 (patch) | |
| tree | 610cd2803475c0ba4a50ca94bddf378b993ae77c /src/components/account_actions/account_actions.js | |
| parent | 728726cf17b770f736ff3cba2896ee65e1d784cf (diff) | |
| parent | 0ee0551a471266066050e059876ee24a4637c1ad (diff) | |
Merge branch 'feat/allow-reporting-status-directly' into 'develop'
Add report button to status ellipsis menu
See merge request pleroma/pleroma-fe!1324
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 395d6685..e53c4f77 100644 --- a/src/components/account_actions/account_actions.js +++ b/src/components/account_actions/account_actions.js @@ -35,7 +35,7 @@ const AccountActions = { this.$store.dispatch('unblockUser', this.user.id) }, reportUser () { - this.$store.dispatch('openUserReportingModal', this.user.id) + this.$store.dispatch('openUserReportingModal', { userId: this.user.id }) }, openChat () { this.$router.push({ |
