Skip to content

Commit

Permalink
chore: fix memo cache key
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack committed May 28, 2024
1 parent 93e848d commit cbf556f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/MemoActionMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const MemoActionMenu = (props: Props) => {
const handleEditMemoClick = () => {
showMemoEditorDialog({
memoName: memo.name,
cacheKey: `${memo.name}-${memo.displayTime}`,
cacheKey: `${memo.name}-${memo.updateTime}`,
});
};

Expand Down

0 comments on commit cbf556f

Please sign in to comment.