From 70afee5df038339b99626b4eaf9a77edc9a2d288 Mon Sep 17 00:00:00 2001 From: inthar-raven Date: Wed, 29 Nov 2023 01:27:59 -0500 Subject: [PATCH] Please let this be final --- src/views/AnalysisView.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/AnalysisView.vue b/src/views/AnalysisView.vue index 01abf194..b8a204b9 100644 --- a/src/views/AnalysisView.vue +++ b/src/views/AnalysisView.vue @@ -23,8 +23,8 @@ const emit = defineEmits(["update:intervalMatrixIndexing"]); const intervalMatrixIndexing = computed({ get: () => props.intervalMatrixIndexing, - set: (newValue: string) => emit("update:intervalMatrixIndexing", - parseInt(newValue, 10)), + set: (newValue: string) => + emit("update:intervalMatrixIndexing", parseInt(newValue, 10)), }); const cellFormat = ref<"best" | "cents" | "decimal">("best");