Skip to content

Commit

Permalink
Merge pull request #22838 from Pujan92/fix/22509
Browse files Browse the repository at this point in the history
Fix: +1(avatar extra number text) is selectable on invite members page
  • Loading branch information
techievivek authored Jul 14, 2023
2 parents 754b6ed + 9f5b33e commit 405fcdf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/MultipleAvatars.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,10 @@ function MultipleAvatars(props) {
StyleUtils.getWidthStyle(oneAvatarSize.width),
]}
>
<Text style={[styles.avatarInnerTextSmall, StyleUtils.getAvatarExtraFontSizeStyle(props.size)]}>{`+${avatars.length - props.maxAvatarsInRow}`}</Text>
<Text
selectable={false}
style={[styles.avatarInnerTextSmall, StyleUtils.getAvatarExtraFontSizeStyle(props.size)]}
>{`+${avatars.length - props.maxAvatarsInRow}`}</Text>
</View>
</View>
</Tooltip>
Expand Down

0 comments on commit 405fcdf

Please sign in to comment.