From e703e3da28f4cdc98413a94d8d08ad40abd894ed Mon Sep 17 00:00:00 2001 From: Felix Brucker Date: Wed, 21 Feb 2024 22:34:26 +0700 Subject: [PATCH] Rename to "Value" --- .../farmer-payout-history.component.html | 4 ++-- .../farmer-payout-history/farmer-payout-history.component.ts | 4 ++-- src/app/farmer-won-blocks/farmer-won-blocks.component.ts | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/farmer-payout-history/farmer-payout-history.component.html b/src/app/farmer-payout-history/farmer-payout-history.component.html index 675e792..4e8ee2d 100644 --- a/src/app/farmer-payout-history/farmer-payout-history.component.html +++ b/src/app/farmer-payout-history/farmer-payout-history.component.html @@ -22,8 +22,8 @@ {{snippetService.getSnippet('payouts-component.headers.transaction')}} {{snippetService.getSnippet('payouts-component.headers.amount')}} - Fiat Amount (Now) - Fiat Amount (At receipt) + Value (Now) + Value (At receipt) {{snippetService.getSnippet('payouts-component.headers.state')}} diff --git a/src/app/farmer-payout-history/farmer-payout-history.component.ts b/src/app/farmer-payout-history/farmer-payout-history.component.ts index 206c535..badc51a 100644 --- a/src/app/farmer-payout-history/farmer-payout-history.component.ts +++ b/src/app/farmer-payout-history/farmer-payout-history.component.ts @@ -98,8 +98,8 @@ export class FarmerPayoutHistoryComponent implements OnInit, OnDestroy { 'Date', 'Coin', 'Amount', - 'Fiat Amount (Now)', - 'Fiat Amount (At receipt)', + 'Value (Now)', + 'Value (At receipt)', 'State', ], this.payouts.getValue().map(payout => { const amountFiatNow = this.ratesService.getFiatAmount(payout.amount) diff --git a/src/app/farmer-won-blocks/farmer-won-blocks.component.ts b/src/app/farmer-won-blocks/farmer-won-blocks.component.ts index 7a9fa4c..d545c1e 100644 --- a/src/app/farmer-won-blocks/farmer-won-blocks.component.ts +++ b/src/app/farmer-won-blocks/farmer-won-blocks.component.ts @@ -263,8 +263,8 @@ export class FarmerWonBlocksComponent implements OnInit, OnDestroy { 'Hash', 'Effort', 'Farmer Reward', - 'Farmer Reward Fiat (Now)', - 'Farmer Reward Fiat (At receipt)', + 'Farmer Reward Value (Now)', + 'Farmer Reward Value (At receipt)', 'Remarks', ], this.wonBlocksSubject.getValue().map(wonBlock => { const farmerRewardAmount = this.getFarmerRewardAmount(wonBlock)