We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea3a534 commit 6b042feCopy full SHA for 6b042fe
web/src/components/MemoView.tsx
@@ -227,7 +227,7 @@ const MemoView: React.FC<Props> = (props: Props) => {
227
readonly={readonly}
228
onClick={handleMemoContentClick}
229
onDoubleClick={handleMemoContentDoubleClick}
230
- compact={props.compact}
+ compact={memo.pinned ? false : props.compact} // Always show full content when pinned.
231
parentPage={parentPage}
232
/>
233
{memo.location && <MemoLocationView location={memo.location} />}
0 commit comments