From 69b1cf7a06287ea0826ba626a563a9dfd50a8cfc Mon Sep 17 00:00:00 2001 From: ogerly Date: Thu, 31 Mar 2022 14:47:48 +0200 Subject: [PATCH 1/3] add extra disabled variable for send emit, disabled send by emit --- .../GddSend/TransactionConfirmationSend.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/GddSend/TransactionConfirmationSend.vue b/frontend/src/components/GddSend/TransactionConfirmationSend.vue index 2d85fa33f..6ac367795 100644 --- a/frontend/src/components/GddSend/TransactionConfirmationSend.vue +++ b/frontend/src/components/GddSend/TransactionConfirmationSend.vue @@ -58,7 +58,11 @@ {{ $t('form.cancel') }} - + {{ $t('form.send_now') }} @@ -76,6 +80,11 @@ export default { loading: { type: Boolean, required: true }, selected: { type: String, required: true }, }, + data() { + return { + disabled: this.loading, + } + }, }