Skip to content

Commit

Permalink
Prepare for release 2.0.0 (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
blackst0ne authored Aug 30, 2018
1 parent 7978a25 commit 3b1d508
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/prod.env.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
API_VERSION: '"v1"',
API_BASE_URL: '"https://api-test.geophystech.ru/api"',
API_OAUTH_BASE_URL: '"https://oauth-client-test.geophystech.ru"',
API_BASE_URL: '"https://rest-api.eqalert.ru/api"',
API_OAUTH_BASE_URL: '"https://oauth-web.eqalert.ru"',
NODE_ENV: '"production"'
}
2 changes: 1 addition & 1 deletion src/components/event/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
watch: {
event: function(value) {
this.breadcrumbs[2].text = value.id
this.setLabel(value.id)
this.setLabel(value)
this.setAgency(value.agency)
}
}
Expand Down
6 changes: 5 additions & 1 deletion src/components/maps/Mainpage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,11 @@
}
},
fetchEvents: function() {
this.$http.get(this.$root.$options.settings.api.endpointEvents)
this.$http.get(this.$root.$options.settings.api.endpointEvents, {
params: {
limit: 500
}
})
.then(response => { this.addEvents(response.data.data) })
.catch(error => { console.log(error) })
}
Expand Down

0 comments on commit 3b1d508

Please sign in to comment.