Skip to content

Commit

Permalink
Update AnalysisView.vue
Browse files Browse the repository at this point in the history
"indexing.value" -> "indexing"
  • Loading branch information
inthar-raven authored Nov 27, 2023
1 parent 447a043 commit 7379af0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/AnalysisView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ const matrix = computed(() => {
<tr>
<th></th>
<th v-for="i of Math.min(scale.size, MAX_SCALE_SIZE)" :key="i">
{{ i - 1 + indexing.value }}
{{ i - 1 + indexing }}
</th>
<th>({{ scale.size + indexing.value }})</th>
<th>({{ scale.size + indexing }})</th>
</tr>
<tr v-for="(row, i) of matrix" :key="i">
<th>{{ formatMatrixCell(scale.getInterval(i)) }}</th>
Expand Down

0 comments on commit 7379af0

Please sign in to comment.