Skip to content

Commit

Permalink
Merge pull request JedWatson#1358 from kamronbatman/patch-1
Browse files Browse the repository at this point in the history
[Fix] Fixes spacing
  • Loading branch information
dcousens authored Nov 10, 2016
2 parents 77e6cc1 + 0991ab0 commit bd5e52e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/src/components/GithubUsers.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ const GithubUsers = React.createClass({
}

return fetch(`https://api.github.com/search/users?q=${input}`)
.then((response) => response.json())
.then((json) => {
return { options: json.items };
});
.then((response) => response.json())
.then((json) => {
return { options: json.items };
});
},
gotoUser (value, event) {
window.open(value.html_url);
Expand Down

0 comments on commit bd5e52e

Please sign in to comment.