Skip to content

Commit

Permalink
corrected eo guide
Browse files Browse the repository at this point in the history
  • Loading branch information
philippspinnler committed Sep 18, 2024
1 parent aefe5fb commit 6805902
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ Vue.component('widget-eo-guide', {
setInterval(async () => {
const response = await axios.get(`${baseUrl}/eo-guide`);
this.total = response.data.total_formatted;
this.review = response.data.latestReview.review_formatted;
this.stars = response.data.latestReview.stars;
this.review = response.data.latest_review.review_formatted;
this.stars = response.data.latest_review.stars;
this.starsArray = [];
for (let x = 0; x < this.stars; x++) {
this.starsArray.push('');
Expand Down

0 comments on commit 6805902

Please sign in to comment.