Skip to content

Commit

Permalink
Merge pull request #2624 from parasharrajat/parasharrajat/ux
Browse files Browse the repository at this point in the history
fixed unread message indicator UI
  • Loading branch information
johnmlee101 authored Apr 29, 2021
2 parents ab6e916 + 0335dc6 commit e130a97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/home/report/ReportActionItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class ReportActionItem extends Component {
<Hoverable>
{hovered => (
<View>
{!hovered && this.props.shouldDisplayNewIndicator && (
{this.props.shouldDisplayNewIndicator && (
<UnreadActionIndicator />
)}
<View style={getReportActionItemStyle(hovered)}>
Expand Down
1 change: 1 addition & 0 deletions src/styles/getReportActionItemStyles.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ export function getMiniReportActionContextMenuWrapperStyle(isReportActionItemGro
...(isReportActionItemGrouped ? positioning.tn8 : positioning.tn4),
...positioning.r4,
position: 'absolute',
zIndex: 1,
};
}

0 comments on commit e130a97

Please sign in to comment.