Skip to content

Commit

Permalink
Rename to "Value"
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbrucker committed Feb 21, 2024
1 parent 5c7ffcf commit e703e3d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
</th>
<th scope="col">{{snippetService.getSnippet('payouts-component.headers.transaction')}}</th>
<th scope="col">{{snippetService.getSnippet('payouts-component.headers.amount')}}</th>
<th scope="col">Fiat Amount (Now)</th>
<th scope="col">Fiat Amount (At receipt)</th>
<th scope="col">Value (Now)</th>
<th scope="col">Value (At receipt)</th>
<th scope="col">{{snippetService.getSnippet('payouts-component.headers.state')}}</th>
</tr>
</thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions src/app/farmer-won-blocks/farmer-won-blocks.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e703e3d

Please sign in to comment.