Skip to content

Commit

Permalink
Merge pull request #34953 from bernhardoj/fix/34762-show-scrollbar
Browse files Browse the repository at this point in the history
Fix list on some page doesn't show scroll bar
  • Loading branch information
MariaHCD authored Jan 29, 2024
2 parents a614bfb + d00540f commit 620f3a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/OptionsList/BaseOptionsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function BaseOptionsList(
optionHoveredStyle,
contentContainerStyles,
sectionHeaderStyle,
showScrollIndicator = false,
showScrollIndicator = true,
listContainerStyles: listContainerStylesProp,
shouldDisableRowInnerPadding = false,
shouldPreventDefaultFocusOnSelectRow = false,
Expand Down
2 changes: 1 addition & 1 deletion src/components/SelectionList/BaseSelectionList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function BaseSelectionList<TItem extends User | RadioItem>(
onConfirm,
headerContent,
footerContent,
showScrollIndicator = false,
showScrollIndicator = true,
showLoadingPlaceholder = false,
showConfirmButton = false,
shouldPreventDefaultFocusOnSelectRow = false,
Expand Down

0 comments on commit 620f3a0

Please sign in to comment.