Skip to content

Commit

Permalink
ekinxoxo calc value fixed to 6 point decimal
Browse files Browse the repository at this point in the history
  • Loading branch information
aesisify committed Jul 24, 2024
1 parent b71feb3 commit 100e1b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</div>
<div class="mt-4">
<p v-for="(corr, index) in correlations" :key="index">
{{ corr.label }}: <strong>{{ corr.value || "Not calculated" }}</strong>
{{ corr.label }}: <strong>{{ corr.value?.toFixed(6) || "Not calculated" }}</strong>
</p>
</div>
</main>
Expand Down

0 comments on commit 100e1b7

Please sign in to comment.