Fix favicon.

This commit is contained in:
Yang Luo
2021-02-13 20:13:32 +08:00
parent 6e015a959f
commit 7bffb03b29
7 changed files with 13 additions and 6 deletions

View File

@ -125,7 +125,7 @@ class UserListPage extends React.Component {
}
},
{
title: 'PasswordType',
title: 'Password Type',
dataIndex: 'passwordType',
key: 'passwordType',
width: '150px',
@ -162,8 +162,15 @@ class UserListPage extends React.Component {
title: 'Email',
dataIndex: 'email',
key: 'email',
width: '150px',
width: '180px',
sorter: (a, b) => a.email.localeCompare(b.email),
render: (text, record, index) => {
return (
<a href={`mailto:${text}`}>
{text}
</a>
)
}
},
{
title: 'Phone',