Skip to content

Commit

Permalink
fix object prop accessor key (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
thearyadev authored Dec 22, 2023
1 parent 5546db3 commit 70694a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/js/season.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ function drawChart(chartName) {
]
});


chartDataCached.chartElement.parent().append(`<p class='chart-stats small text-muted'><small>Mean: ${chartDataCached?.mean} | Variance: ${chartDataCached?.variance} | Standard Deviation: ${chartDataCached?.standard_deviation} | # Entires: ${chartDataCached.entries}</small></p>`)
console.log(chartDataCached)
chartDataCached.chartElement.parent().append(`<p class='chart-stats small text-muted'><small>Mean: ${chartDataCached?.stats.mean} | Variance: ${chartDataCached?.stats.variance} | Standard Deviation: ${chartDataCached?.stats.standard_deviation} | # Entires: ${chartDataCached.entries}</small></p>`)

}

Expand Down

0 comments on commit 70694a2

Please sign in to comment.