From 58b5008eca02e5d89333e86230f39e30d0520d56 Mon Sep 17 00:00:00 2001 From: inthar-raven <36112167+inthar-raven@users.noreply.github.com> Date: Wed, 29 Nov 2023 00:23:33 -0500 Subject: [PATCH] Update AnalysisView.vue --- src/views/AnalysisView.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/AnalysisView.vue b/src/views/AnalysisView.vue index b22a0513..6670c2c2 100644 --- a/src/views/AnalysisView.vue +++ b/src/views/AnalysisView.vue @@ -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)), }); const cellFormat = ref<"best" | "cents" | "decimal">("best"); @@ -158,9 +158,9 @@ const matrix = computed(() => { @@ -168,9 +168,9 @@ const matrix = computed(() => {