chore: fix memo cache key

This commit is contained in:
Steven
2024-05-28 23:23:23 +08:00
parent 93e848d170
commit cbf556fee5

View File

@@ -53,7 +53,7 @@ const MemoActionMenu = (props: Props) => {
const handleEditMemoClick = () => { const handleEditMemoClick = () => {
showMemoEditorDialog({ showMemoEditorDialog({
memoName: memo.name, memoName: memo.name,
cacheKey: `${memo.name}-${memo.displayTime}`, cacheKey: `${memo.name}-${memo.updateTime}`,
}); });
}; };