aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2023-10-26 23:48:45 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2023-10-26 23:48:45 +0000
commitf685f9021bfaff71616efd8e83d114441e69701b (patch)
tree91d6db4e663dfa8f94991032220fd415a5612d17 /src
parent4c11ac9a27696a7fe57eeb486257d8f7c1295548 (diff)
parentc9fd9ceb75520716b6481a5827e736c2f77943e7 (diff)
Merge branch 'fix-reports' into 'develop'
fix reports now showing reason See merge request pleroma/pleroma-fe!1860
Diffstat (limited to 'src')
-rw-r--r--src/components/report/report.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/report/report.js b/src/components/report/report.js
index 76055764..5685aa25 100644
--- a/src/components/report/report.js
+++ b/src/components/report/report.js
@@ -1,6 +1,7 @@
import Select from '../select/select.vue'
import StatusContent from '../status_content/status_content.vue'
import Timeago from '../timeago/timeago.vue'
+import RichContent from 'src/components/rich_content/rich_content.jsx'
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
const Report = {
@@ -10,10 +11,12 @@ const Report = {
components: {
Select,
StatusContent,
- Timeago
+ Timeago,
+ RichContent
},
computed: {
report () {
+ console.log(this.$store.state.reports.reports[this.reportId] || {})
return this.$store.state.reports.reports[this.reportId] || {}
},
state: {