make foldNotification default as it's no longer an experimental feature
This commit is contained in:
parent
cc560811cf
commit
c2a9b028a3
2 changed files with 5 additions and 8 deletions
|
@ -131,6 +131,10 @@
|
||||||
i18n.ts.autocorrectNoteLanguage
|
i18n.ts.autocorrectNoteLanguage
|
||||||
}}</FormSwitch>
|
}}</FormSwitch>
|
||||||
|
|
||||||
|
<FormSwitch v-model="foldNotification" class="_formBlock">{{
|
||||||
|
i18n.ts.foldNotification
|
||||||
|
}}</FormSwitch>
|
||||||
|
|
||||||
<FormSelect v-model="serverDisconnectedBehavior" class="_formBlock">
|
<FormSelect v-model="serverDisconnectedBehavior" class="_formBlock">
|
||||||
<template #label>{{ i18n.ts.whenServerDisconnected }}</template>
|
<template #label>{{ i18n.ts.whenServerDisconnected }}</template>
|
||||||
<option value="reload">
|
<option value="reload">
|
||||||
|
@ -327,13 +331,6 @@
|
||||||
</FormSelect>
|
</FormSelect>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
|
|
||||||
<FormSection>
|
|
||||||
<template #label>{{ i18n.ts.experimentalFeatures }}</template>
|
|
||||||
<FormSwitch v-model="foldNotification" class="_formBlock">{{
|
|
||||||
i18n.ts.foldNotification
|
|
||||||
}}</FormSwitch>
|
|
||||||
</FormSection>
|
|
||||||
|
|
||||||
<FormSection>
|
<FormSection>
|
||||||
<template #label>{{ i18n.ts.forMobile }}</template>
|
<template #label>{{ i18n.ts.forMobile }}</template>
|
||||||
<FormSwitch
|
<FormSwitch
|
||||||
|
|
|
@ -452,7 +452,7 @@ export const defaultStore = markRaw(
|
||||||
},
|
},
|
||||||
foldNotification: {
|
foldNotification: {
|
||||||
where: "deviceAccount",
|
where: "deviceAccount",
|
||||||
default: false,
|
default: true,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue