Skip to content

Commit

Permalink
Merge pull request #359 from Blazam-App/Beta-Nightly
Browse files Browse the repository at this point in the history
v0.9.2 hotfix
  • Loading branch information
jacobsen9026 authored May 7, 2024
2 parents 571c90c + c823651 commit c0df38c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion BLAZAM/BLAZAM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<ServerGarbageCollection>false</ServerGarbageCollection>
<AssemblyVersion>0.9.2</AssemblyVersion>
<Version>2024.05.01.2331</Version>
<Version>2024.05.07.1847</Version>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<RootNamespace>BLAZAM</RootNamespace>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
Expand Down
2 changes: 1 addition & 1 deletion BLAZAM/Pages/Groups/ViewGroup.razor
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
</Section>
</MudItem>
<MudItem xs="12" md="6">
<Section Style="min-height:200px;" Title=@AppLocalization["Member Of"]>
<Section Style="min-height:200px;" Title=@AppLocalization["Parent Groups"]>
<MemberOfList Model="Group" />

</Section>
Expand Down
6 changes: 3 additions & 3 deletions BLAZAMGui/UI/Groups/GroupMembersDataGrid.razor
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@
</HeaderTemplate>
<CellTemplate Context="cellContext">
<MudTooltip
ShowOnClick=@(!cellContext.Item.CanEdit || !cellContext.Item.CanUnassign)
ShowOnHover=@(!cellContext.Item.CanEdit || !cellContext.Item.CanUnassign)
ShowOnClick=@(!cellContext.Item.CanUnassign)
ShowOnHover=@(!cellContext.Item.CanUnassign)
Text="You don't have permission to remove this group member">
<MudButton Disabled=@(!cellContext.Item.CanEdit || !cellContext.Item.CanUnassign)
<MudButton Disabled=@(!cellContext.Item.CanUnassign)
Color="Color.Error"
OnClick="(()=>{Group.UnassignMember(cellContext.Item);InvokeAsync(OnInitializedAsync);})">
@AppLocalization["Remove"]
Expand Down
7 changes: 4 additions & 3 deletions BLAZAMGui/UI/Settings/ActiveDirectoryStatusPanel.razor
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@
<MudStack Row=true Class="align-center">
@AppLocalization["Connection Type"]

<StatusCheck Status=@(Directory.AppRootDirectoryEntry.AuthenticationType.Equals(AuthenticationTypes.Encryption)||
<StatusCheck Status=@(Directory.AppRootDirectoryEntry !=null &&(
Directory.AppRootDirectoryEntry.AuthenticationType.Equals(AuthenticationTypes.Encryption)||
Directory.AppRootDirectoryEntry.AuthenticationType.Equals(AuthenticationTypes.SecureSocketsLayer)||
Directory.AppRootDirectoryEntry.AuthenticationType.Equals(AuthenticationTypes.Secure))
Text="@(Directory.AppRootDirectoryEntry.AuthenticationType.ToString())" />
Directory.AppRootDirectoryEntry.AuthenticationType.Equals(AuthenticationTypes.Secure)))
Text="@(Directory.AppRootDirectoryEntry?.AuthenticationType.ToString())" />


</MudStack>
Expand Down

0 comments on commit c0df38c

Please sign in to comment.