[FIX] Administration User page blank opening users without email (#17836)

pull/17865/head
Maria Eduarda Cunha 6 years ago committed by Diego Sampaio
parent ae28107c49
commit 9e04e14a3f
No known key found for this signature in database
GPG Key ID: E060152B30502562
  1. 2
      client/admin/users/UsersTable.js

@ -96,7 +96,7 @@ export function UsersTable() {
{mediaQuery && <Table.Cell>
<Box fontScale='p2' style={style} color='hint'>{ username }</Box> <Box mi='x4'/>
</Table.Cell>}
<Table.Cell style={style}>{emails && emails[0].address}</Table.Cell>
<Table.Cell style={style}>{emails && emails.length && emails[0].address}</Table.Cell>
{mediaQuery && <Table.Cell style={style}>{roles && roles.join(', ')}</Table.Cell>}
<Table.Cell fontScale='p1' color='hint' style={style}>{status}</Table.Cell>
</Table.Row>;

Loading…
Cancel
Save