summaryrefslogtreecommitdiff
path: root/src/components/CommitteeList
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/CommitteeList')
-rw-r--r--src/components/CommitteeList/CommitteeListItem.astro3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/CommitteeList/CommitteeListItem.astro b/src/components/CommitteeList/CommitteeListItem.astro
index 9a5a55b..542d11f 100644
--- a/src/components/CommitteeList/CommitteeListItem.astro
+++ b/src/components/CommitteeList/CommitteeListItem.astro
@@ -43,8 +43,7 @@ const t = translate(locale);
{committeeMember.name}
{
committeeMember.roles.length > 0 && (
- <span class="font-weight-lighter">
- |{' '}
+ <span class="committee__member__role">
{committeeMember.roles.map((role) => t(tRole, { key: CommitteeRole[role] })).join(', ')}
</span>
)