diff --git a/frontend/src/components/GddSend/TransactionConfirmationLink.vue b/frontend/src/components/GddSend/TransactionConfirmationLink.vue
index bc15c32e6..8e6856e00 100644
--- a/frontend/src/components/GddSend/TransactionConfirmationLink.vue
+++ b/frontend/src/components/GddSend/TransactionConfirmationLink.vue
@@ -33,7 +33,7 @@
{{ $t('form.new_balance') }}
- {{ $t('math.aprox') }} {{ TotalBalance | GDD }}
+ {{ $t('math.aprox') }} {{ totalBalance | GDD }}
@@ -58,16 +58,14 @@ export default {
amount: { type: Number, required: true },
memo: { type: String, required: true },
loading: { type: Boolean, required: true },
- selected: { type: String, required: true },
},
-
computed: {
- TotalBalance() {
- return this.balance - this.amount - this.amount * 0.028
+ totalBalance() {
+ return this.balance - this.amount * 1.028
},
disabled() {
if (this.TotalBalance < 0) {
- return 'disabled'
+ return true
}
return this.loading
},
diff --git a/frontend/src/pages/Send.vue b/frontend/src/pages/Send.vue
index 270187bec..2b0a095a6 100644
--- a/frontend/src/pages/Send.vue
+++ b/frontend/src/pages/Send.vue
@@ -24,7 +24,6 @@