Skip to content

Commit

Permalink
add comma
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeAlhayek committed Sep 24, 2024
1 parent 6c8fc45 commit 4bf95b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public override IDisplayResult Edit(ContentPartFieldDefinition partFieldDefiniti
.Select(role => new RoleEntry
{
Role = role.RoleName,
IsSelected = settings.DisplayedRoles.Contains(role.RoleName, StringComparer.OrdinalIgnoreCase)
IsSelected = settings.DisplayedRoles.Contains(role.RoleName, StringComparer.OrdinalIgnoreCase),
}).ToArray();
model.Roles = roleEntries;
Expand Down

0 comments on commit 4bf95b2

Please sign in to comment.