diff --git a/src/components/Apps/UserConfirmDialog/index.vue b/src/components/Apps/UserConfirmDialog/index.vue index bed7b04de..5bf04ff64 100644 --- a/src/components/Apps/UserConfirmDialog/index.vue +++ b/src/components/Apps/UserConfirmDialog/index.vue @@ -121,7 +121,6 @@ export default { } }, mounted() { - // const onRecvCallback = _.debounce(this.performConfirm, 500) this.$eventBus.$on('showConfirmDialog', this.performConfirm) }, methods: { @@ -201,6 +200,7 @@ export default { } this.$axios.post(`/api/v1/authentication/confirm/`, data).then(res => { this.callback() + this.secretValue = '' this.visible = false }) }