fix changing reported status on same user
This commit is contained in:
parent
65dbf7b85d
commit
0ee0551a47
2 changed files with 9 additions and 3 deletions
|
@ -38,17 +38,23 @@ const UserReportingModal = {
|
||||||
},
|
},
|
||||||
statuses () {
|
statuses () {
|
||||||
return this.$store.state.reports.statuses
|
return this.$store.state.reports.statuses
|
||||||
|
},
|
||||||
|
preTickedIds () {
|
||||||
|
return this.$store.state.reports.preTickedIds
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
userId: 'resetState'
|
userId: 'resetState',
|
||||||
|
preTickedIds (newValue) {
|
||||||
|
this.statusIdsToReport = newValue
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
resetState () {
|
resetState () {
|
||||||
// Reset state
|
// Reset state
|
||||||
this.comment = ''
|
this.comment = ''
|
||||||
this.forward = false
|
this.forward = false
|
||||||
this.statusIdsToReport = this.$store.state.reports.preTickedIds
|
this.statusIdsToReport = this.preTickedIds
|
||||||
this.processing = false
|
this.processing = false
|
||||||
this.error = false
|
this.error = false
|
||||||
},
|
},
|
||||||
|
|
|
@ -4,7 +4,7 @@ const reports = {
|
||||||
state: {
|
state: {
|
||||||
userId: null,
|
userId: null,
|
||||||
statuses: [],
|
statuses: [],
|
||||||
preTicked: [],
|
preTickedIds: [],
|
||||||
modalActivated: false
|
modalActivated: false
|
||||||
},
|
},
|
||||||
mutations: {
|
mutations: {
|
||||||
|
|
Loading…
Reference in a new issue