Skip to content

Commit

Permalink
add stage number (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
dangershony authored Nov 22, 2023
1 parent 02a5ae1 commit afdf25d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Angor/Client/Pages/Recover.razor
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,17 @@
<table class="table">
<thead>
<tr>
<th>Stage Details</th>
<th>Address</th>
<th>Stage </th>
<th>Amount</th>
<th>Status</th>
</tr>
</thead>
<tbody>
@foreach (var item in StageInfo.Items)
{
<tr>
<td>@(item.StageIndex + 1)</td>
<td>@item.Amount @network.CoinTicker</td>
<td>@item.OutputAddress</td>
<td>
@if (item.IsSpent)
{
Expand Down

0 comments on commit afdf25d

Please sign in to comment.