Skip to content

Commit

Permalink
Allow editing of descripion
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsen9026 committed May 22, 2024
1 parent fd181d3 commit 381268f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BLAZAM/Pages/Groups/ViewGroup.razor
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

<MudTextField Label="@AppLocalization["Account Name"]" @bind-Value="@Group.SamAccountName" Disabled />

<MudTextField Label="@AppLocalization["Description"]" @bind-Value="@Group.Description" Disabled />
<MudTextField Label="@AppLocalization["Description"]" @bind-Value="@Group.Description" Disabled=@(!EditMode || !Group.CanEdit) />


<MudTextField Label="@AppLocalization["Email Address"]" @bind-Value="@Group.Email" Disabled=@(!EditMode || !Group.CanEditField(ActiveDirectoryFields.Mail)) />
Expand Down

0 comments on commit 381268f

Please sign in to comment.