소스 검색

feat: enable heading in the table plugin (#3325)

Lucas.Xu 1 년 전
부모
커밋
af0ae2e375
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart

+ 1 - 1
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart

@@ -61,7 +61,7 @@ class _AppFlowyEditorPageState extends State<AppFlowyEditorPage> {
     paragraphItem..isActive = onlyShowInSingleTextTypeSelectionAndExcludeTable,
     ...(headingItems
       ..forEach(
-        (e) => e.isActive = onlyShowInSingleTextTypeSelectionAndExcludeTable,
+        (e) => e.isActive = onlyShowInSingleSelectionAndTextType,
       )),
     ...markdownFormatItems,
     quoteItem..isActive = onlyShowInSingleTextTypeSelectionAndExcludeTable,