Skip to content

Commit

Permalink
Update AnalysisView.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
inthar-raven authored Nov 29, 2023
1 parent c459326 commit 58b5008
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/views/AnalysisView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const emit = defineEmits([
const intervalMatrixIndexing = computed({
get: () => props.intervalMatrixIndexing,
set: (newValue: number) => emit("update:intervalMatrixIndexing", newValue),
set: (newValue: string) => emit("update:intervalMatrixIndexing", parseInt(newValue)),

Check warning on line 28 in src/views/AnalysisView.vue

View workflow job for this annotation

GitHub Actions / build (17.x)

Insert `⏎···`
});
const cellFormat = ref<"best" | "cents" | "decimal">("best");
Expand Down Expand Up @@ -158,19 +158,19 @@ const matrix = computed(() => {
<label>Interval indexing</label>
<span>
<input
type="number"
type="radio"
id="indexing-zero"
:value="0"
value="0"
v-model="intervalMatrixIndexing"
/>
<label for="indexing-zero"> 0-indexing (default) </label>
</span>

Check warning on line 168 in src/views/AnalysisView.vue

View workflow job for this annotation

GitHub Actions / build (17.x)

Delete `········`
<span>
<input
type="number"
type="radio"
id="indexing-one"
:value="1"
value="1"
v-model="intervalMatrixIndexing"
/>
<label for="indexing-one"> 1-indexing </label>
Expand Down

0 comments on commit 58b5008

Please sign in to comment.