[PR #7513] [MERGED] fix: nested list issue in quote/callout block #7929

Closed
opened 2026-03-23 23:21:49 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/7513
Author: @LucasXu0
Created: 3/12/2025
Status: Merged
Merged: 3/13/2025
Merged by: @LucasXu0

Base: mainHead: fix_lr_087


📝 Commits (10+)

  • 4f63b4a feat: use indent and outdent in quote block
  • a519ed4 feat: add slash menu support in callout block
  • e5ba86a fix: enter key issue in callout block within table
  • a740ca0 fix: overlay issue in quote block
  • 77807a2 fix: overlay issue in quote block
  • 1834b89 fix: image block in column layout
  • 57629aa feat: turn nested list to callout / quote block
  • 6396962 fix: quote block in table layout
  • c544390 fix: enter doesn't work in quote block sometimes
  • 7853c5c fix: quote icon height is too short on mobile

📊 Changes

12 files changed (+50 additions, -42 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_configuration.dart (+10 -14)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart (+3 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/block_action_option_cubit.dart (+2 -3)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/drag_to_reorder/util.dart (+0 -5)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/callout/callout_block_component.dart (+17 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/columns/simple_column_block_component.dart (+0 -4)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/parsers/callout_node_parser.dart (+0 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/quote/quote_block_component.dart (+7 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/quote/quote_block_shortcuts.dart (+5 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_shortcuts/simple_table_enter_command.dart (+4 -1)
📝 frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart (+0 -2)
📝 frontend/appflowy_flutter/test/unit_test/document/turn_into/turn_into_test.dart (+2 -6)

📄 Description

Feature Preview

  • support indent and outdent in quote block
  • add slash menu support in callout block
  • icon overlay issue in quote block
  • enter key issue in callout block within table
  • image block layout issue in column block
  • turn nested list into callout / quote block
  • quote block in table layout
  • quote icon height is too short on mobile
  • remove debug print

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/7513 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 3/12/2025 **Status:** ✅ Merged **Merged:** 3/13/2025 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `fix_lr_087` --- ### 📝 Commits (10+) - [`4f63b4a`](https://github.com/AppFlowy-IO/AppFlowy/commit/4f63b4a45551fc00786a5ef1f4c4a6435c5f18db) feat: use indent and outdent in quote block - [`a519ed4`](https://github.com/AppFlowy-IO/AppFlowy/commit/a519ed48402c428aa41d585272609b1c417d3775) feat: add slash menu support in callout block - [`e5ba86a`](https://github.com/AppFlowy-IO/AppFlowy/commit/e5ba86a3cddc8d9471026da5708066ec86d88d28) fix: enter key issue in callout block within table - [`a740ca0`](https://github.com/AppFlowy-IO/AppFlowy/commit/a740ca0d7f6326925906635e8014194719499929) fix: overlay issue in quote block - [`77807a2`](https://github.com/AppFlowy-IO/AppFlowy/commit/77807a209e8a6bb479ea7b2928333e3351f2cb01) fix: overlay issue in quote block - [`1834b89`](https://github.com/AppFlowy-IO/AppFlowy/commit/1834b89dd6a642cc21cf0a607f000b0cd3ec216b) fix: image block in column layout - [`57629aa`](https://github.com/AppFlowy-IO/AppFlowy/commit/57629aab33493aec0a179824ec3908838926cf2e) feat: turn nested list to callout / quote block - [`6396962`](https://github.com/AppFlowy-IO/AppFlowy/commit/639696234914718e40bc60b11a7a3a4f54e93bcc) fix: quote block in table layout - [`c544390`](https://github.com/AppFlowy-IO/AppFlowy/commit/c544390e75a76d3a1f2933d915fbc1618f504517) fix: enter doesn't work in quote block sometimes - [`7853c5c`](https://github.com/AppFlowy-IO/AppFlowy/commit/7853c5cdcb4a08f8c61a112812d8d573ff248932) fix: quote icon height is too short on mobile ### 📊 Changes **12 files changed** (+50 additions, -42 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_configuration.dart` (+10 -14) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart` (+3 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/block_action_option_cubit.dart` (+2 -3) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/actions/drag_to_reorder/util.dart` (+0 -5) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/callout/callout_block_component.dart` (+17 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/columns/simple_column_block_component.dart` (+0 -4) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/parsers/callout_node_parser.dart` (+0 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/quote/quote_block_component.dart` (+7 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/quote/quote_block_shortcuts.dart` (+5 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/simple_table/simple_table_shortcuts/simple_table_enter_command.dart` (+4 -1) 📝 `frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart` (+0 -2) 📝 `frontend/appflowy_flutter/test/unit_test/document/turn_into/turn_into_test.dart` (+2 -6) </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview - support indent and outdent in quote block - add slash menu support in callout block - icon overlay issue in quote block - enter key issue in callout block within table - image block layout issue in column block - turn nested list into callout / quote block - quote block in table layout - quote icon height is too short on mobile - remove debug print <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [x] I've listed at least one issue that this PR fixes in the description above. - [x] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [x] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:21:49 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#7929
No description provided.