mirror of
https://github.com/whyour/qinglong.git
synced 2026-07-18 02:14:32 +08:00
完善拉取公开仓库
This commit is contained in:
@@ -21,7 +21,7 @@ const columns = [
|
||||
align: 'center' as const,
|
||||
width: 50,
|
||||
render: (text: string, record: any, index: number) => {
|
||||
return <span style={{ cursor: 'text' }}>{index + 1} </span>;
|
||||
return index + 1;
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -30,7 +30,7 @@ const columns = [
|
||||
key: 'timestamp',
|
||||
align: 'center' as const,
|
||||
render: (text: string, record: any) => {
|
||||
return <span>{new Date(record.timestamp).toLocaleString()}</span>;
|
||||
return new Date(record.timestamp).toLocaleString();
|
||||
},
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user