From 13519d69936d7e379d23d04e33ada086d6692564 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Thu, 31 Mar 2022 20:19:34 +0200 Subject: [PATCH] remove unused properties --- .../src/components/GddSend/TransactionConfirmationLink.vue | 1 - .../src/components/GddSend/TransactionConfirmationSend.vue | 6 ++---- frontend/src/pages/Send.vue | 3 --- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/frontend/src/components/GddSend/TransactionConfirmationLink.vue b/frontend/src/components/GddSend/TransactionConfirmationLink.vue index 31ae01cc3..fd2e798eb 100644 --- a/frontend/src/components/GddSend/TransactionConfirmationLink.vue +++ b/frontend/src/components/GddSend/TransactionConfirmationLink.vue @@ -60,7 +60,6 @@ export default { amount: { type: Number, required: true }, memo: { type: String, required: true }, loading: { type: Boolean, required: true }, - selected: { type: String, required: true }, }, } diff --git a/frontend/src/components/GddSend/TransactionConfirmationSend.vue b/frontend/src/components/GddSend/TransactionConfirmationSend.vue index 6ac367795..25519f4ed 100644 --- a/frontend/src/components/GddSend/TransactionConfirmationSend.vue +++ b/frontend/src/components/GddSend/TransactionConfirmationSend.vue @@ -61,7 +61,7 @@ {{ $t('form.send_now') }} @@ -77,12 +77,10 @@ export default { email: { type: String, required: false, default: '' }, amount: { type: Number, required: true }, memo: { type: String, required: true }, - loading: { type: Boolean, required: true }, - selected: { type: String, required: true }, }, data() { return { - disabled: this.loading, + disabled: false, } }, } diff --git a/frontend/src/pages/Send.vue b/frontend/src/pages/Send.vue index 270187bec..dd158f2ee 100644 --- a/frontend/src/pages/Send.vue +++ b/frontend/src/pages/Send.vue @@ -12,11 +12,9 @@