Skip to content

Commit

Permalink
Fix events detail page
Browse files Browse the repository at this point in the history
  • Loading branch information
dvesh3 authored Sep 1, 2021
1 parent c7ba736 commit 1c0c1d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/static/js/vue-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ new Vue({
this.$apollo.query({
query: GET_EVENT_DETAILS,
variables: {
id: id,
id: parseInt(id),
},
}).then(data => {
this.eventDetails = data.data.eventDetails;
Expand Down Expand Up @@ -185,4 +185,4 @@ new Vue({
return [this.eventDetails.locationMap.latitude, this.eventDetails.locationMap.longitude]
}
}
});
});

0 comments on commit 1c0c1d0

Please sign in to comment.