diff --git a/frontend/src/components/settings/SettingsOverlay.vue b/frontend/src/components/settings/SettingsOverlay.vue index 463f88b..a9a1d1f 100644 --- a/frontend/src/components/settings/SettingsOverlay.vue +++ b/frontend/src/components/settings/SettingsOverlay.vue @@ -56,13 +56,13 @@ const updateBehaviour: Ref = ref({ const behaviours: Ref = computed(() => [{ label: t('settings.update-behaviour.option-1'), - value: app.UpdateBehaviour.OFF + value: app.UpdateBehaviour.AUTO }, { label: t('settings.update-behaviour.option-2'), value: app.UpdateBehaviour.NOTIFY }, { label: t('settings.update-behaviour.option-3'), - value: app.UpdateBehaviour.AUTO + value: app.UpdateBehaviour.OFF }]) // Every time the overlay is opened.