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, + } + }, }