From 49b30da69745c3738ce4f434eaf959fa2d6b71ff Mon Sep 17 00:00:00 2001 From: Leigh Pointer Date: Mon, 6 Mar 2023 09:13:25 +0100 Subject: [PATCH] Hide the ActionDialog Button for "Clear Notifications" If there are no Notifications then the buttons is not displayed. --- Oqtane.Client/Modules/Admin/UserProfile/Index.razor | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Oqtane.Client/Modules/Admin/UserProfile/Index.razor b/Oqtane.Client/Modules/Admin/UserProfile/Index.razor index a56235ef..29c381b2 100644 --- a/Oqtane.Client/Modules/Admin/UserProfile/Index.razor +++ b/Oqtane.Client/Modules/Admin/UserProfile/Index.razor @@ -211,8 +211,11 @@ else } -
- + @if (notifications.Any()) + { +
+ + }