Merge branch 'fix-reports' into 'develop'
fix reports now showing reason See merge request pleroma/pleroma-fe!1860
This commit is contained in:
commit
f685f9021b
1
changelog.d/fix-reports.fix
Normal file
1
changelog.d/fix-reports.fix
Normal file
@ -0,0 +1 @@
|
|||||||
|
fix reports now showing reason/content:w
|
@ -1,6 +1,7 @@
|
|||||||
import Select from '../select/select.vue'
|
import Select from '../select/select.vue'
|
||||||
import StatusContent from '../status_content/status_content.vue'
|
import StatusContent from '../status_content/status_content.vue'
|
||||||
import Timeago from '../timeago/timeago.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'
|
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
|
||||||
|
|
||||||
const Report = {
|
const Report = {
|
||||||
@ -10,10 +11,12 @@ const Report = {
|
|||||||
components: {
|
components: {
|
||||||
Select,
|
Select,
|
||||||
StatusContent,
|
StatusContent,
|
||||||
Timeago
|
Timeago,
|
||||||
|
RichContent
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
report () {
|
report () {
|
||||||
|
console.log(this.$store.state.reports.reports[this.reportId] || {})
|
||||||
return this.$store.state.reports.reports[this.reportId] || {}
|
return this.$store.state.reports.reports[this.reportId] || {}
|
||||||
},
|
},
|
||||||
state: {
|
state: {
|
||||||
|
Loading…
Reference in New Issue
Block a user