Skip to content

Commit

Permalink
Please let this be final
Browse files Browse the repository at this point in the history
  • Loading branch information
inthar-raven committed Nov 29, 2023
1 parent 10d4119 commit 70afee5
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 @@ -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");
Expand Down

0 comments on commit 70afee5

Please sign in to comment.