Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore(navbar): Remove extra bracket
  • Loading branch information
RWOverdijk committed Mar 27, 2016
commit e4d38a646fe10fa2686dd4e11938037cc5f24f46
2 changes: 1 addition & 1 deletion src/NavBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default class NavBar extends React.Component {
var drawer = this.context.drawer;
drawer.toggle();
}}>
<Image source={backButtonImage)} style={[styles.backButtonImage, this.props.navigationState.barButtonIconStyle]}/>
<Image source={backButtonImage} style={[styles.backButtonImage, this.props.navigationState.barButtonIconStyle]}/>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider renaming backButtonImage to buttonImage, as it is used for both drawerImage and backButtonImage. For readability.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Froelund Fair enough. See: #420

</TouchableOpacity>
);
}else{
Expand Down