From 692b57a1ad11e8865e749f85155231f11957214a Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Sun, 23 Jan 2022 15:49:30 +0900 Subject: [PATCH] Fix the notification dropdown not updating without page refresh --- BTCPayServer/Controllers/UINotificationsController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Controllers/UINotificationsController.cs b/BTCPayServer/Controllers/UINotificationsController.cs index 4a57d00d1..168704b66 100644 --- a/BTCPayServer/Controllers/UINotificationsController.cs +++ b/BTCPayServer/Controllers/UINotificationsController.cs @@ -45,7 +45,7 @@ namespace BTCPayServer.Controllers [HttpGet] public IActionResult GetNotificationDropdownUI() { - return ViewComponent("NotificationsDropdown"); + return ViewComponent("Notifications", new { appearance = "Dropdown" }); } [HttpGet]