Fix description of auto update switch

It should be some description and not describe the current state of
the switch.
This commit is contained in:
Girish Ramakrishnan
2025-09-30 14:10:07 +02:00
parent 5c0d53b52c
commit 647209cf6d
12 changed files with 25 additions and 49 deletions
+1 -1
View File
@@ -121,7 +121,7 @@ onMounted(async () => {
<div>
<label>{{ $t('app.updates.auto.title') }}</label>
<div v-if="!app.appStoreId">{{ $t('app.updates.info.customAppUpdateInfo') }}</div>
<div v-else>{{ $t(autoUpdatesEnabled ? 'app.updates.auto.enabled' : 'app.updates.auto.disabled') }}</div>
<div v-else>{{ $t('app.updates.auto') }}</div>
</div>
<Switch v-if="app.appStoreId" v-model="autoUpdatesEnabled" :disabled="autoUpdatesEnabledBusy" @change="onAutoUpdatesEnabledChange"/>
</SettingsItem>