From b60bc94f9ce69a5a49c411a3ff7dc31c4effb3f6 Mon Sep 17 00:00:00 2001 From: feitianbubu Date: Tue, 21 Apr 2026 17:20:01 +0800 Subject: [PATCH] feat: show last used time column in tokens table --- web/src/components/table/tokens/TokensColumnDefs.jsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/src/components/table/tokens/TokensColumnDefs.jsx b/web/src/components/table/tokens/TokensColumnDefs.jsx index 86b33dd1..71edfcdc 100644 --- a/web/src/components/table/tokens/TokensColumnDefs.jsx +++ b/web/src/components/table/tokens/TokensColumnDefs.jsx @@ -536,6 +536,13 @@ export const getTokensColumns = ({ return
{renderTimestamp(text)}
; }, }, + { + title: t('最后使用时间'), + dataIndex: 'accessed_time', + render: (text, record, index) => { + return
{text ? renderTimestamp(text) : '-'}
; + }, + }, { title: t('过期时间'), dataIndex: 'expired_time',