From dc59c4ca47bafceb59761ecc16692c008d7c06bb Mon Sep 17 00:00:00 2001 From: Umar Bolatov Date: Thu, 26 Dec 2019 14:53:09 -0800 Subject: [PATCH] Adjust invoice pagination behavior fix #1236 --- .../Views/Invoice/ListInvoices.cshtml | 28 +++++++++++-------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/BTCPayServer/Views/Invoice/ListInvoices.cshtml b/BTCPayServer/Views/Invoice/ListInvoices.cshtml index 5cf8ad89c..c5f2c78aa 100644 --- a/BTCPayServer/Views/Invoice/ListInvoices.cshtml +++ b/BTCPayServer/Views/Invoice/ListInvoices.cshtml @@ -75,9 +75,9 @@ @{ - var storeIds = String.Join( + var storeIds = string.Join( "", - Model.StoreIds.Select(storeId => string.Format(",storeid:{0}", storeId)) + Model.StoreIds.Select(storeId => $",storeid:{storeId}") ); } @@ -116,7 +116,7 @@