feat: add updatedAt in servers table

This commit is contained in:
moonrailgun 2023-11-15 22:26:45 +08:00
parent f9e8a1df0b
commit 81e9eea565

View File

@ -244,6 +244,13 @@ export const ServerList: React.FC<{
)} / ${filesize(record.payload.hdd_total * 1000 * 1000)}`;
},
},
{
key: 'updatedAt',
title: 'updatedAt',
render: (val) => {
return dayjs(val).format('MMM D HH:mm:ss');
},
},
];
}, []);