Skip to content

Commit e4d0b5c

Browse files
authored
Merge pull request #127 from microsoft/dev
fix an issue with scrolling fields when there are many many fields
2 parents 93cb4da + 075d2b3 commit e4d0b5c

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)