diff --git a/frontend/src/components/GddSend/TransactionForm.vue b/frontend/src/components/GddSend/TransactionForm.vue index 5e683d132..cb625da42 100644 --- a/frontend/src/components/GddSend/TransactionForm.vue +++ b/frontend/src/components/GddSend/TransactionForm.vue @@ -184,8 +184,7 @@ export default { memo: this.form.memo, }) }, - onReset(event) { - event.preventDefault() + onReset() { this.form.email = '' this.form.amount = '' this.form.memo = '' @@ -213,6 +212,7 @@ export default { }, }, created() { + this.onReset() this.form.email = this.recipientEmail ? this.recipientEmail : '' }, }