forked from AkkomaGang/akkoma-fe
reset modal state if api request is completed
This commit is contained in:
parent
1b07c6ae4f
commit
dfc56dfee2
1 changed files with 6 additions and 4 deletions
|
@ -36,15 +36,16 @@ const UserReportingModal = {
|
|||
}
|
||||
},
|
||||
watch: {
|
||||
userId (value) {
|
||||
userId: 'resetState'
|
||||
},
|
||||
methods: {
|
||||
resetState () {
|
||||
// Reset state
|
||||
this.comment = ''
|
||||
this.forward = false
|
||||
this.statusIdsToReport = []
|
||||
this.processing = false
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
},
|
||||
closeModal () {
|
||||
this.$store.dispatch('closeUserReportingModal')
|
||||
},
|
||||
|
@ -59,6 +60,7 @@ const UserReportingModal = {
|
|||
this.$store.state.api.backendInteractor.reportUser(params)
|
||||
.then(() => {
|
||||
this.processing = false
|
||||
this.resetState()
|
||||
this.closeModal()
|
||||
})
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue