Skip to content

Commit

Permalink
Corrected the captilization on Tabs/PrebuiltQueries.json, otherwise the
Browse files Browse the repository at this point in the history
Pre-Built queries were not showing on OS X.
  • Loading branch information
bismark-foofus committed Aug 7, 2016
1 parent ef6c4c4 commit afca65e
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 afca65e

Please sign in to comment.