From d07aa9caee466c590ce6d44bbb7610f16b2118fa Mon Sep 17 00:00:00 2001 From: inthar-raven <36112167+inthar-raven@users.noreply.github.com> Date: Mon, 27 Nov 2023 22:49:30 -0500 Subject: [PATCH] Update AnalysisView.vue The table now keeps the 0-step column for both 0-indexed and 1-indexed, so we can now address #445 if we want. --- src/views/AnalysisView.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/AnalysisView.vue b/src/views/AnalysisView.vue index 65c4914d..3359a857 100644 --- a/src/views/AnalysisView.vue +++ b/src/views/AnalysisView.vue @@ -90,7 +90,7 @@ const matrix = computed(() => { centsFractionDigits: 1, decimalFractionDigits: 3, }), - 1 - (matrixStartIndex.value) + 0 ).map((row) => row.map(formatMatrixCell)); }); @@ -102,8 +102,8 @@ const matrix = computed(() => { -
- {{ i }} + + {{ i - 1 + matrixStartIndex }} ({{ scale.size + matrixStartIndex }})