Skip to content

Commit

Permalink
Adjust pull payment badge color
Browse files Browse the repository at this point in the history
  • Loading branch information
bolatovumar committed Mar 29, 2022
1 parent d074d60 commit 423ec8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BTCPayServer/Views/UIPullPayment/ViewPullPayment.cshtml
Expand Up @@ -177,11 +177,11 @@
<td class="text-end text-nowrap">
@if (!string.IsNullOrEmpty(invoice.Link))
{
<a class="transaction-link text-print-default badge @StatusTextClass(invoice.Status.ToString())" href="@invoice.Link" rel="noreferrer noopener">@invoice.Status.GetStateString()</a>
<a class="transaction-link text-white badge @StatusTextClass(invoice.Status.ToString())" href="@invoice.Link" rel="noreferrer noopener">@invoice.Status.GetStateString()</a>
}
else
{
<span class="text-print-default badge @StatusTextClass(invoice.Status.ToString())">@invoice.Status.GetStateString()</span>
<span class="text-white badge @StatusTextClass(invoice.Status.ToString())">@invoice.Status.GetStateString()</span>
}
</td>
</tr>
Expand Down

0 comments on commit 423ec8c

Please sign in to comment.