diff --git a/web/src/components/Memo.tsx b/web/src/components/Memo.tsx index 9ba00c89..90f515b9 100644 --- a/web/src/components/Memo.tsx +++ b/web/src/components/Memo.tsx @@ -171,8 +171,11 @@ const Memo: React.FC = (props: Props) => { editorStore.setEditMemoWithId(memo.id); }; - const handleMemoCreatedTimeClick = () => { - showChangeMemoCreatedTsDialog(memo.id); + const handleMemoCreatedTimeClick = (e: React.MouseEvent) => { + if (e.altKey) { + e.preventDefault(); + showChangeMemoCreatedTsDialog(memo.id); + } }; const handleMemoVisibilityClick = (visibility: Visibility) => { @@ -189,9 +192,9 @@ const Memo: React.FC = (props: Props) => { {memo.pinned &&
}
- + {createdTimeStr} - + {isVisitorMode && ( @{memo.creatorName}