Merge branch 'feat/fold' into 'develop'
make foldNotification default as it's no longer an experimental feature Co-authored-by: Lhcfl <Lhcfl@outlook.com> See merge request firefish/firefish!10774
This commit is contained in:
commit
4fcd5463e9
2 changed files with 5 additions and 8 deletions
|
@ -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
|
||||
|
|
|
@ -452,7 +452,7 @@ export const defaultStore = markRaw(
|
|||
},
|
||||
foldNotification: {
|
||||
where: "deviceAccount",
|
||||
default: false,
|
||||
default: true,
|
||||
},
|
||||
}),
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue