From 5ade3b99b17df7aedcd02581534408c18a98a7c8 Mon Sep 17 00:00:00 2001 From: rockstardev <5191402+rockstardev@users.noreply.github.com> Date: Fri, 17 Oct 2025 13:30:18 -0500 Subject: [PATCH 1/2] Providing full status for review in POS recent transactions --- .../Plugins/PointOfSale/Controllers/UIPointOfSaleController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Plugins/PointOfSale/Controllers/UIPointOfSaleController.cs b/BTCPayServer/Plugins/PointOfSale/Controllers/UIPointOfSaleController.cs index 4d6cfd472..d50d32471 100644 --- a/BTCPayServer/Plugins/PointOfSale/Controllers/UIPointOfSaleController.cs +++ b/BTCPayServer/Plugins/PointOfSale/Controllers/UIPointOfSaleController.cs @@ -520,7 +520,7 @@ namespace BTCPayServer.Plugins.PointOfSale.Controllers ["id"] = i.Id, ["date"] = i.InvoiceTime, ["price"] = _displayFormatter.Currency(i.Price, i.Currency, DisplayFormatter.CurrencyFormat.Symbol), - ["status"] = i.GetInvoiceState().Status.ToString(), + ["status"] = i.GetInvoiceState().ToString(), ["url"] = Url.Action(nameof(UIInvoiceController.Invoice), "UIInvoice", new { invoiceId = i.Id }) }); return Json(recent); From c630c9b4cbc807f07d68f063d23264436992c499 Mon Sep 17 00:00:00 2001 From: rockstardev <5191402+rockstardev@users.noreply.github.com> Date: Fri, 17 Oct 2025 13:40:02 -0500 Subject: [PATCH 2/2] Centering the icon for recent transactions --- BTCPayServer/wwwroot/pos/keypad.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BTCPayServer/wwwroot/pos/keypad.css b/BTCPayServer/wwwroot/pos/keypad.css index 2e519ab68..b4d964364 100644 --- a/BTCPayServer/wwwroot/pos/keypad.css +++ b/BTCPayServer/wwwroot/pos/keypad.css @@ -16,6 +16,8 @@ button[data-bs-toggle] { } button[data-bs-toggle] .icon { --icon-size: 1.75em; + display: block; + margin: auto; } #ItemsListToggle { right: var(--btcpay-space-m);