mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-27 16:38:50 +02:00
Resolves #583 -- fix function binding
This commit is contained in:
parent
42e2b2429a
commit
a506d3d907
1 changed files with 2 additions and 2 deletions
|
@ -33,11 +33,11 @@ class MainHelperBarView extends React.Component {
|
||||||
/>
|
/>
|
||||||
<CommandsHelperBarView
|
<CommandsHelperBarView
|
||||||
shown={this.state.shownBar === BARS.COMMANDS}
|
shown={this.state.shownBar === BARS.COMMANDS}
|
||||||
onExit={this.showSelf}
|
onExit={this.showSelf.bind(this)}
|
||||||
/>
|
/>
|
||||||
<IntlHelperBarView
|
<IntlHelperBarView
|
||||||
shown={this.state.shownBar === BARS.INTL}
|
shown={this.state.shownBar === BARS.INTL}
|
||||||
onExit={this.showSelf}
|
onExit={this.showSelf.bind(this)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue