Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
b60bc94f
authored
Apr 21, 2026
by
feitianbubu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: show last used time column in tokens table
parent
f995a868
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
web/src/components/table/tokens/TokensColumnDefs.jsx
+7
-0
No files found.
web/src/components/table/tokens/TokensColumnDefs.jsx
View file @
b60bc94f
...
...
@@ -537,6 +537,13 @@ export const getTokensColumns = ({
},
},
{
title
:
t
(
'最后使用时间'
),
dataIndex
:
'accessed_time'
,
render
:
(
text
,
record
,
index
)
=>
{
return
<
div
>
{
text
?
renderTimestamp
(
text
)
:
'-'
}
</
div
>;
},
},
{
title
:
t
(
'过期时间'
),
dataIndex
:
'expired_time'
,
render
:
(
text
,
record
,
index
)
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment