Skip to content

Commit

Permalink
Merge pull request #37319 from dukenv0307/fix/37293
Browse files Browse the repository at this point in the history
fix: The selection is smaller than member name row when navigating
  • Loading branch information
pecanoro authored Feb 29, 2024
2 parents c477841 + 04952c7 commit 0cc5817
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SelectionList/TableListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ function TableListItem({
return (
<BaseListItem
item={item}
pressableStyle={[[styles.selectionListPressableItemWrapper, isFocused && styles.activeComponentBG]]}
wrapperStyle={[styles.flexRow, styles.flex1, styles.justifyContentBetween, styles.userSelectNone, styles.alignItemsCenter, isFocused && styles.sidebarLinkActive]}
pressableStyle={[[styles.selectionListPressableItemWrapper, isFocused && styles.sidebarLinkActive]]}
wrapperStyle={[styles.flexRow, styles.flex1, styles.justifyContentBetween, styles.userSelectNone, styles.alignItemsCenter]}
selectMultipleStyle={[StyleUtils.getCheckboxContainerStyle(20), StyleUtils.getMultiselectListStyles(!!item.isSelected, !!item.isDisabled)]}
isFocused={isFocused}
isDisabled={isDisabled}
Expand Down

0 comments on commit 0cc5817

Please sign in to comment.