From 1005fa0a75a281a6987d62ca7be1c7ea01115175 Mon Sep 17 00:00:00 2001 From: Chris Jacobsen Date: Mon, 6 May 2024 19:23:16 -0400 Subject: [PATCH 1/2] Fix for possible null exception while checking AD status --- BLAZAMGui/UI/Settings/ActiveDirectoryStatusPanel.razor | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/BLAZAMGui/UI/Settings/ActiveDirectoryStatusPanel.razor b/BLAZAMGui/UI/Settings/ActiveDirectoryStatusPanel.razor index a642d055..51b87fc3 100644 --- a/BLAZAMGui/UI/Settings/ActiveDirectoryStatusPanel.razor +++ b/BLAZAMGui/UI/Settings/ActiveDirectoryStatusPanel.razor @@ -33,10 +33,11 @@ @AppLocalization["Connection Type"] - + Directory.AppRootDirectoryEntry.AuthenticationType.Equals(AuthenticationTypes.Secure))) + Text="@(Directory.AppRootDirectoryEntry?.AuthenticationType.ToString())" /> From 449b7c24feb340c650ea6d76c7a94cdb1f7df98e Mon Sep 17 00:00:00 2001 From: Chris Jacobsen Work Date: Tue, 7 May 2024 14:47:42 -0400 Subject: [PATCH 2/2] Fix for not being able to remove group members without edit access #357 --- BLAZAM/BLAZAM.csproj | 2 +- BLAZAM/Pages/Groups/ViewGroup.razor | 2 +- BLAZAMGui/UI/Groups/GroupMembersDataGrid.razor | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/BLAZAM/BLAZAM.csproj b/BLAZAM/BLAZAM.csproj index 034430a0..45f2e438 100644 --- a/BLAZAM/BLAZAM.csproj +++ b/BLAZAM/BLAZAM.csproj @@ -6,7 +6,7 @@ enable false 0.9.2 - 2024.05.01.2331 + 2024.05.07.1847 false BLAZAM False diff --git a/BLAZAM/Pages/Groups/ViewGroup.razor b/BLAZAM/Pages/Groups/ViewGroup.razor index ca711975..1f0d12ad 100644 --- a/BLAZAM/Pages/Groups/ViewGroup.razor +++ b/BLAZAM/Pages/Groups/ViewGroup.razor @@ -87,7 +87,7 @@ -
+
diff --git a/BLAZAMGui/UI/Groups/GroupMembersDataGrid.razor b/BLAZAMGui/UI/Groups/GroupMembersDataGrid.razor index c09c0c96..0f10222a 100644 --- a/BLAZAMGui/UI/Groups/GroupMembersDataGrid.razor +++ b/BLAZAMGui/UI/Groups/GroupMembersDataGrid.razor @@ -62,10 +62,10 @@ - @AppLocalization["Remove"]