mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
Make sure replaced transactions have linethrough in the invoice list
This commit is contained in:
parent
ca462bec84
commit
1bbdaa1251
2 changed files with 1 additions and 6 deletions
|
@ -6,11 +6,6 @@
|
|||
<META NAME="robots" CONTENT="noindex,nofollow">
|
||||
}
|
||||
<style type="text/css">
|
||||
|
||||
.linethrough {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.firstCol {
|
||||
width: 140px;
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue