This commit is contained in:
wood 2023-10-23 18:58:34 +08:00
parent 3682ba77cc
commit 10c353c655
2 changed files with 4 additions and 4 deletions

View File

@ -321,7 +321,7 @@ const LogsTable = () => {
>
额度
</Table.HeaderCell>
<Table.HeaderCell
{/* <Table.HeaderCell
style={{ cursor: 'pointer' }}
onClick={() => {
sortLog('content');
@ -329,7 +329,7 @@ const LogsTable = () => {
width={isAdminUser ? 4 : 6}
>
详情
</Table.HeaderCell>
</Table.HeaderCell> */}
</Table.Row>
</Table.Header>
@ -360,7 +360,7 @@ const LogsTable = () => {
<Table.Cell>{log.prompt_tokens ? log.prompt_tokens : ''}</Table.Cell>
<Table.Cell>{log.completion_tokens ? log.completion_tokens : ''}</Table.Cell>
<Table.Cell>{log.quota ? renderQuota(log.quota, 6) : ''}</Table.Cell>
<Table.Cell>{log.content}</Table.Cell>
{/* <Table.Cell>{log.content}</Table.Cell> */}
</Table.Row>
);
})}

View File

@ -176,7 +176,7 @@ const PersonalSetting = () => {
<Button as={Link} to={`/user/edit/`}>
更新个人信息
</Button>
<Button onClick={generateAccessToken}>生成系统访问令牌</Button>
{/* <Button onClick={generateAccessToken}>生成系统访问令牌</Button> */}
<Button onClick={getAffLink}>复制邀请链接</Button>
<Button onClick={() => {
setShowAccountDeleteModal(true);