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); 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);