Skip to content

Commit

Permalink
Merge pull request #6 from bismark-foofus/master
Browse files Browse the repository at this point in the history
Corrected the capitalization of PrebuiltQueries.json
  • Loading branch information
rvazarkar authored Aug 9, 2016
2 parents 3a434df + afca65e commit 2745306
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default class PrebuiltQueriesDisplay extends Component {

componentWillMount() {
$.ajax({
url: 'src/components/SearchContainer/Tabs/prebuiltqueries.json',
url: 'src/components/SearchContainer/Tabs/PrebuiltQueries.json',
type: 'GET',
success: function(response){
var x = JSON.parse(response)
Expand All @@ -23,7 +23,7 @@ export default class PrebuiltQueriesDisplay extends Component {
y.push(el)
});

this.setState({queries: y})
this.setState({queries: y})
}.bind(this)
})
}
Expand Down

0 comments on commit 2745306

Please sign in to comment.