Commit cbf556fe authored by Steven's avatar Steven

chore: fix memo cache key

parent 93e848d1
...@@ -53,7 +53,7 @@ const MemoActionMenu = (props: Props) => { ...@@ -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}`,
}); });
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment