logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: c622b77dddc314434cbec9b03785ff82d04d1b52
parent 4c11ac9a27696a7fe57eeb486257d8f7c1295548
Author: Henry Jameson <me@hjkos.com>
Date:   Fri, 27 Oct 2023 02:44:22 +0300

fix reports now showing reason

Diffstat:

Msrc/components/report/report.js5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 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: {