From dcdab5b21819a6e7667b7a6b9b91c411e6ab71bd Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Wed, 16 Feb 2022 13:43:17 +0900 Subject: [PATCH] Do not show storeid in the invoice filter --- BTCPayServer/Views/UIInvoice/ListInvoices.cshtml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BTCPayServer/Views/UIInvoice/ListInvoices.cshtml b/BTCPayServer/Views/UIInvoice/ListInvoices.cshtml index e4e0d48d0..be680ee0c 100644 --- a/BTCPayServer/Views/UIInvoice/ListInvoices.cshtml +++ b/BTCPayServer/Views/UIInvoice/ListInvoices.cshtml @@ -4,6 +4,8 @@ @{ ViewData.SetActivePage(InvoiceNavPages.Index, "Invoices"); var storeIds = string.Join("", Model.StoreIds.Select(storeId => $",storeid:{storeId}")); + if (this.Context.GetRouteValue("storeId") is string) + storeIds = string.Empty; } @section PageHeadContent {