chore(editor): add RTL experiement flag for editor (#9882)

This commit is contained in:
L-Sun
2025-01-24 08:23:24 +00:00
parent 791484a46c
commit 3f4311ff1c
3 changed files with 16 additions and 0 deletions

View File

@@ -250,6 +250,15 @@ export const AFFINE_FLAGS = {
configurable: isCanaryBuild,
defaultState: isCanaryBuild,
},
enable_editor_rtl: {
category: 'affine',
displayName:
'com.affine.settings.workspace.experimental-features.enable-editor-rtl.name',
description:
'com.affine.settings.workspace.experimental-features.enable-editor-rtl.description',
configurable: isCanaryBuild,
defaultState: false,
},
} satisfies { [key in string]: FlagInfo };
// oxlint-disable-next-line no-redeclare