chore: update detail styles (#1964)

This commit is contained in:
boojack
2023-07-15 22:57:57 +08:00
committed by GitHub
parent 49dd90578b
commit 01f4780655
15 changed files with 133 additions and 160 deletions

View File

@ -76,7 +76,7 @@ const MemoList = () => {
return shouldShow;
})
: memos
).filter((memo) => memo.creatorId === currentUserId);
).filter((memo) => memo.creatorId === currentUserId && memo.rowStatus === "NORMAL");
const pinnedMemos = shownMemos.filter((m) => m.pinned);
const unpinnedMemos = shownMemos.filter((m) => !m.pinned);