Invitations: show who the invitation is from.

master
Tom Hacohen 4 years ago
parent a55af64c18
commit 0a84405619

@ -89,7 +89,7 @@ function InvitationsIncoming() {
{invitations ?
<List>
{(invitations.length > 0 ?
invitations.map((invite, idx) => (
invitations.map((invite) => (
<ListItem
key={invite.uid}
rightIcon={(
@ -103,7 +103,7 @@ function InvitationsIncoming() {
</>
)}
>
Invitation {idx + 1}
Invitation from {invite.fromUsername}
</ListItem>
))
:

Loading…
Cancel
Save