From 745c5585dff23e06f63efc438d56aff92b91d200 Mon Sep 17 00:00:00 2001 From: Dan Simon Date: Fri, 4 Aug 2023 12:00:24 -0400 Subject: [PATCH] Remove commas --- src/components/tabs/options-visual/OptionsVisualTab.vue | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/components/tabs/options-visual/OptionsVisualTab.vue b/src/components/tabs/options-visual/OptionsVisualTab.vue index 78e72aea5..b672312e6 100644 --- a/src/components/tabs/options-visual/OptionsVisualTab.vue +++ b/src/components/tabs/options-visual/OptionsVisualTab.vue @@ -24,7 +24,6 @@ export default { return { theme: "", notation: "", - commas: false, headerTextColored: true, }; }, @@ -40,10 +39,6 @@ export default { } }, watch: { - commas(newValue) { - player.options.commas = newValue; - ADNotations.Settings.exponentCommas.show = newValue; - }, headerTextColored(newValue) { player.options.headerTextColored = newValue; }, @@ -53,7 +48,6 @@ export default { const options = player.options; this.theme = Theme.currentName(); this.notation = options.notation; - this.commas = options.commas; this.headerTextColored = options.headerTextColored; }, }