From 7ad9aae50ad95a286c0360afaead72326f9a0c4f Mon Sep 17 00:00:00 2001 From: ogerly Date: Mon, 4 Apr 2022 16:16:41 +0200 Subject: [PATCH] change variable radio_selected to radioSelected --- .../src/components/GddSend/TransactionForm.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/frontend/src/components/GddSend/TransactionForm.vue b/frontend/src/components/GddSend/TransactionForm.vue index e0f332c52..a41ff1897 100644 --- a/frontend/src/components/GddSend/TransactionForm.vue +++ b/frontend/src/components/GddSend/TransactionForm.vue @@ -7,7 +7,7 @@ -
+

{{ $t('gdd_per_link.header') }}

{{ $t('gdd_per_link.choose-amount') }}
-
+
{{ - radio_selected === sendTypes.send + radioSelected === sendTypes.send ? $t('form.send_now') : $t('form.generate_now') }} @@ -186,14 +186,14 @@ export default { memo: this.memo, amountValue: 0.0, }, - radio_selected: this.selected, + radioSelected: this.selected, } }, methods: { onSubmit() { this.normalizeAmount(true) this.$emit('set-transaction', { - selected: this.radio_selected, + selected: this.radioSelected, email: this.form.email, amount: this.form.amountValue, memo: this.form.memo,