web/rightpanel: use comma instead of slash as separator for pronoun sets

This commit is contained in:
Tulir Asokan 2025-01-03 16:29:21 +02:00
parent a1a006bf6b
commit cb08f43535

View file

@ -105,7 +105,7 @@ const UserExtendedProfile = ({ profile, refreshProfile, client, userID }: Extend
<SetTimeZoneElement tz={userTimeZone} client={client} refreshProfile={refreshProfile} />} <SetTimeZoneElement tz={userTimeZone} client={client} refreshProfile={refreshProfile} />}
{pronouns.length > 0 && <> {pronouns.length > 0 && <>
<div>Pronouns:</div> <div>Pronouns:</div>
<div>{pronouns.map(pronounSet => ensureString(pronounSet.summary)).join(" / ")}</div> <div>{pronouns.map(pronounSet => ensureString(pronounSet.summary)).join(", ")}</div>
</>} </>}
</div> </div>
</> </>