Skip to content

Commit 075d2b3

Browse files
committed
fix an issue with scrolling fields when there are many many fields
1 parent 49e6787 commit 075d2b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/ConceptShelf.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export const ConceptShelf: FC<ConceptShelfProps> = function ConceptShelf() {
185185

186186
<Box
187187
sx={{
188-
maxHeight: expandedGroups.includes(groupName) || isCustomGroup ? '1000px' : '240px',
188+
maxHeight: expandedGroups.includes(groupName) || isCustomGroup ? 'auto' : '240px',
189189
overflow: 'hidden',
190190
transition: 'max-height 0.3s ease-in-out',
191191
width: '100%'

0 commit comments

Comments
 (0)