chore: bump version 0.2.7 (#3022)

* chore: bump version 0.2.7

* chore: update language files using inlang machine translation
This commit is contained in:
Lucas.Xu
2023-07-18 18:59:35 +07:00
committed by GitHub
parent 06bbc06fff
commit 0fb004aee0
29 changed files with 5031 additions and 64 deletions

View File

@ -110,6 +110,7 @@ class _AppFlowyEditorPageState extends State<AppFlowyEditorPage> {
super.initState();
indentableBlockTypes.add(ToggleListBlockKeys.type);
convertibleBlockTypes.add(ToggleListBlockKeys.type);
slashMenuItems = _customSlashMenuItems();
effectiveScrollController = widget.scrollController ?? ScrollController();

View File

@ -40,7 +40,7 @@ Node toggleListBlockNode({
if (textDirection != null)
ToggleListBlockKeys.textDirection: textDirection,
},
children: children ?? [paragraphNode()],
children: children ?? [],
);
}