Skip to content
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.

Commit

Permalink
fix invalid github endpoint var name (#155)
Browse files Browse the repository at this point in the history
* Upgrade base image to node:8.1.4-alpine

* fix invalid github endpoint var name

* Update Github.jsx
  • Loading branch information
lcgkm authored and djenriquez committed Jul 27, 2017
1 parent dfed36a commit 48c12c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/Authentication/Github/Github.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ export default class GithubAuthBackend extends React.Component {
floatingLabelFixed={true}
value={this.state.newConfig.base_url}
onChange={(e) => {
this.setState({ newConfig: update(this.state.newConfig, { endpoint: { $set: e.target.value } }) });
this.setState({ newConfig: update(this.state.newConfig, { base_url: { $set: e.target.value } }) });
}}
/>
<TextField
Expand Down

0 comments on commit 48c12c3

Please sign in to comment.