Skip to content

Commit

Permalink
Merge pull request #20641 from hungvu193/fix-20510
Browse files Browse the repository at this point in the history
Fix: New room - Room names in LHN do not match the name when created
  • Loading branch information
Beamanator authored Jun 14, 2023
2 parents 23978e4 + ddc19e0 commit 862955c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DisplayNames/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class DisplayNames extends PureComponent {
{index < this.props.displayNamesWithTooltips.length - 1 && <Text style={this.props.textStyles}>,&nbsp;</Text>}
</Fragment>
))}
{this.props.displayNamesWithTooltips.length > 1 && this.state.isEllipsisActive && (
{this.props.displayNamesWithTooltips.length > 1 && Boolean(this.state.isEllipsisActive) && (
<View style={styles.displayNameTooltipEllipsis}>
<Tooltip text={this.props.fullTitle}>
{/* There is some Gap for real ellipsis so we are adding 4 `.` to cover */}
Expand Down

0 comments on commit 862955c

Please sign in to comment.