Reveal email in admin table

This commit is contained in:
James Grugett 2022-06-16 14:13:08 -05:00
parent 67abb942a0
commit ecbfed049d

View File

@ -47,7 +47,7 @@ function UsersTable() {
return ( return (
<> <>
<Grid <Grid
data={users} data={fullUsers}
columns={[ columns={[
{ {
id: 'avatarUrl', id: 'avatarUrl',
@ -62,7 +62,10 @@ function UsersTable() {
class="hover:underline hover:decoration-indigo-400 hover:decoration-2" class="hover:underline hover:decoration-indigo-400 hover:decoration-2"
href="/${cell}">@${cell}</a>`), href="/${cell}">@${cell}</a>`),
}, },
'Email', {
id: 'email',
name: 'Email',
},
{ {
id: 'createdTime', id: 'createdTime',
name: 'Created Time', name: 'Created Time',