fix: exhibition of edgeless

This commit is contained in:
QiShaoXuan
2022-12-14 18:38:48 +08:00
parent dbf4b05ba3
commit e4704dda38
10 changed files with 110 additions and 28 deletions
@@ -18,7 +18,7 @@ export const DateCell = ({
<TableCell ellipsis={true}>
{pageMeta[dateKey] === undefined
? '--'
: dayjs(pageMeta[dateKey] as string).format('YYYY-MM-DD HH:MM')}
: dayjs(pageMeta[dateKey] as string).format('YYYY-MM-DD HH:mm')}
</TableCell>
);
};