Skip to content

Commit

Permalink
make both avatar and name selectable
Browse files Browse the repository at this point in the history
  • Loading branch information
NikkiWines committed Mar 19, 2021
1 parent 9e34aad commit 4ce6b36
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/pages/home/HeaderView.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,11 @@ const HeaderView = props => (
}
}}
>
<MultipleAvatars avatarImageURLs={props.report.icons} />
<View style={[styles.flexRow, styles.alignItemsCenter]}>
<MultipleAvatars avatarImageURLs={props.report.icons} />
<Header title={props.report.reportName} />
</View>
</Pressable>
<Header title={props.report.reportName} />
<View style={[styles.reportOptions, styles.flexRow]}>
<Pressable
onPress={() => togglePinnedState(props.report)}
Expand Down

0 comments on commit 4ce6b36

Please sign in to comment.