reset modal state if api request is completed

This commit is contained in:
taehoon 2019-03-20 12:22:56 -04:00
parent 1b07c6ae4f
commit dfc56dfee2

View file

@ -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()
})
},