mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-20 22:23:53 +08:00
fix(draft-list): Display ,
separated participants list
This commit is contained in:
parent
1f25a37971
commit
e798a1a02d
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ ParticipantsColumn = new ListTabular.Column
|
|||
|
||||
if list.length > 0
|
||||
<div className="participants">
|
||||
{list.map (p) => <span key={p.email}>{p.displayName()}</span>}
|
||||
<span>{list.map((p) => p.displayName()).join(', ')}</span>
|
||||
</div>
|
||||
else
|
||||
<div className="participants no-recipients">
|
||||
|
|
Loading…
Reference in a new issue