Set ShowGithubCorner to false.

This commit is contained in:
Yang Luo
2021-08-07 19:52:01 +08:00
parent d79544f34a
commit a271ef0719
3 changed files with 18 additions and 3 deletions

View File

@ -120,6 +120,21 @@ class UserListPage extends React.Component {
)
}
},
{
title: i18next.t("general:Application"),
dataIndex: 'signupApplication',
key: 'signupApplication',
width: (Setting.isMobile()) ? "100px" : "120px",
fixed: 'left',
sorter: (a, b) => a.owner.localeCompare(b.owner),
render: (text, record, index) => {
return (
<Link to={`/applications/${text}`}>
{text}
</Link>
)
}
},
{
title: i18next.t("general:Name"),
dataIndex: 'name',