feat: show last used time column in tokens table

This commit is contained in:
feitianbubu 2026-04-21 17:20:01 +08:00
parent f995a868e4
commit b60bc94f9c
No known key found for this signature in database
GPG Key ID: 8CB4F7CF6B46E635

View File

@ -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',