Minor UI improvements (#2606)

* Added "Checkout" button to invoice detail page

* Added missing icon

All other pages have a "plus" icon on the primary button, except this page

* Button icons are always in front, not after like here was
This commit is contained in:
Wouter Samaey
2021-06-24 12:52:41 +02:00
committed by GitHub
parent 3338dcac1c
commit 2ea3baf36e
4 changed files with 19 additions and 5 deletions

View File

@@ -116,5 +116,6 @@ namespace BTCPayServer.Models.InvoicingModels
public List<PaymentEntity> Payments { get; set; }
public bool Archived { get; set; }
public bool CanRefund { get; set; }
public bool ShowCheckout { get; set; }
}
}