Skip to content

Commit

Permalink
Update Wallet.razor
Browse files Browse the repository at this point in the history
  • Loading branch information
itailiors committed Aug 3, 2024
1 parent 92521f9 commit 16e2c8f
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/Angor/Client/Pages/Wallet.razor
Original file line number Diff line number Diff line change
Expand Up @@ -647,19 +647,19 @@ else
<div class="table-responsive form-control">
<table class="table table-sm">
<thead>
<tr>
<th scope="col">Coin</th>
<th scope="col">Amount</th>
</tr>
</thead>
<tbody>
@foreach (var addressUtxoItem in addressInfo.UtxoData)
{
<tr>
<td>@($"{addressUtxoItem.outpoint}")</td>
<td>@Money.Satoshis(addressUtxoItem.value).ToUnit(MoneyUnit.BTC) @network.CoinTicker</td>
<th scope="col">Coin</th>
<th scope="col">Amount</th>
</tr>
}
</thead>
<tbody>
@foreach (var addressUtxoItem in addressInfo.UtxoData)
{
<tr>
<td>@($"{addressUtxoItem.outpoint}")</td>
<td>@Money.Satoshis(addressUtxoItem.value).ToUnit(MoneyUnit.BTC) @network.CoinTicker</td>
</tr>
}
</tbody>
</table>
</div>
Expand Down

0 comments on commit 16e2c8f

Please sign in to comment.