mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-03 13:01:00 +00:00
feat: show last used time column in tokens table
This commit is contained in:
@@ -536,6 +536,13 @@ export const getTokensColumns = ({
|
||||
return <div>{renderTimestamp(text)}</div>;
|
||||
},
|
||||
},
|
||||
{
|
||||
title: t('最后使用时间'),
|
||||
dataIndex: 'accessed_time',
|
||||
render: (text, record, index) => {
|
||||
return <div>{text ? renderTimestamp(text) : '-'}</div>;
|
||||
},
|
||||
},
|
||||
{
|
||||
title: t('过期时间'),
|
||||
dataIndex: 'expired_time',
|
||||
|
||||
Reference in New Issue
Block a user