From 02361e37f052f9c90e856546e0a58344ea2946c0 Mon Sep 17 00:00:00 2001 From: Henry Heino <46334387+personalizedrefrigerator@users.noreply.github.com> Date: Tue, 7 Nov 2023 04:04:03 -0800 Subject: [PATCH] Desktop: Fixes #9036: Fix note list scroll (#9211) Co-authored-by: Laurent Cozic --- packages/app-desktop/gui/NoteListItem/NoteListItem.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/app-desktop/gui/NoteListItem/NoteListItem.tsx b/packages/app-desktop/gui/NoteListItem/NoteListItem.tsx index c1c643d4c..a29b9580b 100644 --- a/packages/app-desktop/gui/NoteListItem/NoteListItem.tsx +++ b/packages/app-desktop/gui/NoteListItem/NoteListItem.tsx @@ -145,6 +145,7 @@ const NoteListItem = (props: NoteItemProps, ref: LegacyRef) => { tabIndex={0} className={className} data-id={noteId} + style={{ height: props.itemSize.height }} onContextMenu={props.onContextMenu} onDragStart={props.onDragStart} onDragOver={props.onDragOver}