make foldNotification default as it's no longer an experimental feature

This commit is contained in:
Lhcfl 2024-04-27 13:18:01 +08:00
parent cc560811cf
commit c2a9b028a3
2 changed files with 5 additions and 8 deletions

View file

@ -131,6 +131,10 @@
i18n.ts.autocorrectNoteLanguage
}}</FormSwitch>
<FormSwitch v-model="foldNotification" class="_formBlock">{{
i18n.ts.foldNotification
}}</FormSwitch>
<FormSelect v-model="serverDisconnectedBehavior" class="_formBlock">
<template #label>{{ i18n.ts.whenServerDisconnected }}</template>
<option value="reload">
@ -327,13 +331,6 @@
</FormSelect>
</FormSection>
<FormSection>
<template #label>{{ i18n.ts.experimentalFeatures }}</template>
<FormSwitch v-model="foldNotification" class="_formBlock">{{
i18n.ts.foldNotification
}}</FormSwitch>
</FormSection>
<FormSection>
<template #label>{{ i18n.ts.forMobile }}</template>
<FormSwitch

View file

@ -452,7 +452,7 @@ export const defaultStore = markRaw(
},
foldNotification: {
where: "deviceAccount",
default: false,
default: true,
},
}),
);