Make sure replaced transactions have linethrough in the invoice list

This commit is contained in:
nicolas.dorier 2020-05-21 01:50:25 +09:00
parent ca462bec84
commit 1bbdaa1251
No known key found for this signature in database
GPG key ID: 6618763EF09186FE
2 changed files with 1 additions and 6 deletions

View file

@ -6,11 +6,6 @@
<META NAME="robots" CONTENT="noindex,nofollow">
}
<style type="text/css">
.linethrough {
text-decoration: line-through;
}
.firstCol {
width: 140px;
}

View file

@ -59,7 +59,7 @@
<tbody>
@foreach (var payment in onchainPayments)
{
<tr class="@(payment.Replaced ? "linethrough" : "")" >
<tr style="@(payment.Replaced ? "text-decoration: line-through" : "")">
<td>@payment.Crypto</td>
<td>@payment.DepositAddress</td>
<td class="payment-value">@payment.CryptoPaymentData.GetValue() @Safe.Raw(payment.AdditionalInformation is string i ? $"<br/>({i})" : string.Empty)</td>