From 1e283c73920c5b00a19cb01232dde10a90c01aae Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Tue, 21 Jul 2026 18:37:39 +0200 Subject: [PATCH] refactor(settings): rename variable Renamed the variable 'inputClass' to 'inputType' because this name is more accurate --- src/features/settings/components/SettingsInput.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/settings/components/SettingsInput.vue b/src/features/settings/components/SettingsInput.vue index 6550f7c..af96223 100644 --- a/src/features/settings/components/SettingsInput.vue +++ b/src/features/settings/components/SettingsInput.vue @@ -40,7 +40,7 @@ inputModel.value = store.get(props.path); const inputId = useId(); const inputLabelId = useId(); -const inputClass = computed(() => ({ +const inputType = computed(() => ({ number: 'number', string: 'text' }[props.setting.type] @@ -66,7 +66,7 @@ const apply = function apply () { :class="{ 'done-button-shown': hasChanged }" >