diff --git a/frontend/src/components/GddSend/TransactionForm.vue b/frontend/src/components/GddSend/TransactionForm.vue index cb625da42..5e683d132 100644 --- a/frontend/src/components/GddSend/TransactionForm.vue +++ b/frontend/src/components/GddSend/TransactionForm.vue @@ -184,7 +184,8 @@ export default { memo: this.form.memo, }) }, - onReset() { + onReset(event) { + event.preventDefault() this.form.email = '' this.form.amount = '' this.form.memo = '' @@ -212,7 +213,6 @@ export default { }, }, created() { - this.onReset() this.form.email = this.recipientEmail ? this.recipientEmail : '' }, } diff --git a/frontend/src/pages/Send.vue b/frontend/src/pages/Send.vue index f4c5095eb..270187bec 100644 --- a/frontend/src/pages/Send.vue +++ b/frontend/src/pages/Send.vue @@ -148,6 +148,7 @@ export default { .then((result) => { this.$emit('set-tunneled-email', null) this.code = result.data.createTransactionLink.code + this.transactionData = { ...EMPTY_TRANSACTION_DATA } this.currentTransactionStep = TRANSACTION_STEPS.transactionResultLink this.updateTransactions({}) })