fix(core): adjust feature flag (#8309)

This commit is contained in:
EYHN
2024-09-19 15:26:33 +08:00
committed by GitHub
parent a6c2f5dcd5
commit 5d57f53a06

View File

@@ -79,8 +79,8 @@ export const AFFINE_FLAGS = {
bsFlag: 'enable_mind_map_import',
displayName: 'Mind Map Import',
description: 'Enables mind map import.',
configurable: true,
defaultState: false,
configurable: false,
defaultState: true,
},
enable_multi_view: {
category: 'affine',
@@ -102,14 +102,14 @@ export const AFFINE_FLAGS = {
feedbackLink:
'https://discord.com/channels/959027316334407691/1280014319865696351/1280014319865696351',
configurable: true,
defaultState: false,
defaultState: true,
},
enable_editor_settings: {
category: 'affine',
displayName: 'Editor Settings',
description: 'Enables editor settings.',
configurable: isNotStableBuild,
defaultState: isNotStableBuild,
configurable: false,
defaultState: true,
},
enable_offline_mode: {
category: 'affine',