From 93898146f00d3eb6d96ad61ad3db393a17d8910a Mon Sep 17 00:00:00 2001 From: NickolaiYurchenko Date: Thu, 3 Sep 2020 18:07:58 +0300 Subject: [PATCH] web/storagenode: net total payout displaying fix Change-Id: I2259e835b6c81d41c4fc64031b09c9edf64be321 --- .../src/app/components/payments/EstimationArea.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/storagenode/src/app/components/payments/EstimationArea.vue b/web/storagenode/src/app/components/payments/EstimationArea.vue index 85a7edf7c..d62c63475 100644 --- a/web/storagenode/src/app/components/payments/EstimationArea.vue +++ b/web/storagenode/src/app/components/payments/EstimationArea.vue @@ -104,7 +104,7 @@

{{ totalPayout | centsToDollars }}

-
+

Total + Surge {{ surgePercent }}

{{ heldInfo.paid | centsToDollars }}

@@ -263,7 +263,7 @@ export default class EstimationArea extends Vue { return this.heldInfo.paid; } - return this.heldInfo.paidWithoutSurge; + return this.grossTotal; } /**