We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 855e4d5 commit 14d382cCopy full SHA for 14d382c
src/components/modules/list/PostItem.tsx
@@ -20,7 +20,7 @@ export const PostItem = memo<{ data: PostItemType }>(function PostItem({ data })
20
<span className=" flex min-w-0 items-center space-x-1 text-sm">
21
<MdiClockOutline />
22
{data.createdAt ? dayjs(data.createdAt).format('YYYY 年 M 月 D 日') : '1999 年 9 月 9 日'}
23
- {data.updatedAt && <> (已编辑)</>}
+ {data.modified && <> (已编辑)</>}
24
</span>
25
<span className="flex min-w-0 items-center space-x-1 text-sm">
26
<FeHash className="translate-y-[0.5px]" />
0 commit comments