mirror of
https://github.com/usememos/memos.git
synced 2025-10-27 14:56:30 +08:00
chore: fix memo cache key
This commit is contained in:
parent
93e848d170
commit
cbf556fee5
1 changed files with 1 additions and 1 deletions
|
|
@ -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}`,
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue