mirror of
https://github.com/tulir/gomuks.git
synced 2025-04-20 10:33:41 -05:00
web/rightpanel: use comma instead of slash as separator for pronoun sets
This commit is contained in:
parent
a1a006bf6b
commit
cb08f43535
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||||
</>
|
</>
|
||||||
|
|
Loading…
Add table
Reference in a new issue