Skip to content

Commit

Permalink
Merge pull request #34357 from s77rt/selection-list-item-styling
Browse files Browse the repository at this point in the history
Fix Selection List Item Styling
  • Loading branch information
robertjchen authored Jan 17, 2024
2 parents 724d938 + d58e7e8 commit 42de286
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SelectionList/BaseListItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ function BaseListItem({
textStyles={[
styles.optionDisplayName,
isFocused ? styles.sidebarLinkActiveText : styles.sidebarLinkText,
isUserItem || item.isSelected || item.alternateText ? styles.sidebarLinkTextBold : null,
styles.sidebarLinkTextBold,
styles.pre,
item.alternateText ? styles.mb1 : null,
]}
alternateTextStyles={[styles.optionAlternateText, styles.textLabelSupporting, isFocused ? styles.sidebarLinkActiveText : styles.sidebarLinkText, styles.pre]}
alternateTextStyles={[styles.textLabelSupporting, styles.lh16, styles.pre]}
isDisabled={isDisabled}
onSelectRow={onSelectRow}
showTooltip={showTooltip}
Expand Down

0 comments on commit 42de286

Please sign in to comment.