Skip to content

Commit

Permalink
fix wrong order of launch behaviours
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen3H committed Oct 21, 2024
1 parent e582ecc commit a61b453
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/settings/SettingsOverlay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ const updateBehaviour: Ref<Behaviour> = ref({
const behaviours: Ref<Behaviour[]> = 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.
Expand Down

0 comments on commit a61b453

Please sign in to comment.