mirror of
https://github.com/usememos/memos.git
synced 2025-11-06 15:36:13 +08:00
fix: date format in share memo dialog (#2672)
fix: Date format in shareable Memo Images (#2668)
This commit is contained in:
parent
fcfb76a103
commit
bd5a0679ee
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ const ShareMemoDialog: React.FC<Props> = (props: Props) => {
|
|||
className="w-full h-auto select-none relative flex flex-col justify-start items-start bg-white dark:bg-zinc-800"
|
||||
ref={memoElRef}
|
||||
>
|
||||
<span className="w-full px-6 pt-5 pb-2 text-sm text-gray-500">{getTimeString(memo.displayTime)}</span>
|
||||
<span className="w-full px-6 pt-5 pb-2 text-sm text-gray-500">{getDateTimeString(memo.displayTime)}</span>
|
||||
<div className="w-full px-6 text-base pb-4">
|
||||
<MemoContent content={memo.content} />
|
||||
<MemoResourceListView resourceList={memo.resources} />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue