Skip to content

Commit 86cea63

Browse files
committed
Fix
1 parent dd13d25 commit 86cea63

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/components/back4App/Header/Header.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default class Header extends React.Component {
4545
<Media query="(max-width: 1099px)">
4646
<div className={styles['hamburger-wrapper']}>
4747
<HamburgerButton onClick={() => {
48-
props.sidebarToggle();
48+
this.props.sidebarToggle();
4949
}} />
5050
</div>
5151
</Media>

src/components/back4App/Header/headerNavData.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ const headerNavData = {
77
{label: 'Blog', url: 'http://blog.back4app.com/'},
88
],
99
dropdownItems: [
10-
{label: 'Parse Server', url:'/product/parse-server'},
11-
{label: 'Add-ons', url:'/product/addons'},
12-
{label: 'Hosting', url:'/product/hosting'},
13-
{label: 'Push Notifications', url:'/product/push-notifications'}
10+
{label: 'Account Keys', url:'https://dashboard.back4app.com/classic#/wizard/account-key'},
11+
{label: 'Edit Password', url:'https://dashboard.back4app.com/password/change'},
12+
{label: 'Edit Email', url:'https://dashboard.back4app.com/email/change'},
13+
{label: 'Sign Out', url:'https://dashboard.back4app.com/logout'}
1414
]
1515
}
1616

0 commit comments

Comments
 (0)