Only show the txid as unconf in the wallet transaction list

This commit is contained in:
nicolas.dorier
2019-08-03 23:21:09 +09:00
parent d90a65975c
commit 7be104f486

View File

@@ -55,7 +55,7 @@
<tbody>
@foreach (var transaction in Model.Transactions)
{
<tr class="@(transaction.IsConfirmed ? "" : "unconf")">
<tr>
<td>
<span class="switchTimeFormat" data-switch="@transaction.Timestamp.ToTimeAgo()">
@transaction.Timestamp.ToBrowserDate()
@@ -67,7 +67,7 @@
<a asp-route-labelFilter="@label.Value"><span class="badge" style="display:block;background-color:@label.Color;color:white;">@label.Value</span></a>
}
</td>
<td class="smMaxWidth text-truncate">
<td class="smMaxWidth text-truncate @(transaction.IsConfirmed ? "" : "unconf")">
<a href="@transaction.Link" target="_blank">
@transaction.Id
</a>