[PR #999] [CLOSED] Fix/005 #4484

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/999
Author: @appflowy
Created: 9/7/2022
Status: Closed

Base: release/0.0.5Head: fix/005


📝 Commits (10+)

  • e496f93 refactor: Migrate the markdown feature from Dart to Rust
  • 4de0008 chore: disable group field that does not support grouping
  • e3d0e7c docs: readme for appflowy_board
  • a5cbb82 Merge pull request #984 from AppFlowy-IO/feat/appflowy_board_docs
  • bfebea7 fix: add new created row
  • c97cb7c Merge pull request #983 from AppFlowy-IO/feat/disable_unsupport_group_field
  • dbcddc4 Merge pull request #987 from AppFlowy-IO/feat/fix_delete_card_bugs
  • 4a21a10 fix: editing cell height when editing row contains multi text cell
  • f923549 Merge pull request #988 from AppFlowy-IO/feat/edit_multi_text_cell
  • a3d2cef Merge pull request #928 from matrixhead/main

📊 Changes

52 files changed (+1707 additions, -1074 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+25 -26)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart (+31 -18)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+30 -24)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_cell.dart (+45 -14)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_date_cell.dart (+11 -4)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_number_cell.dart (+10 -3)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart (+20 -19)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_text_cell.dart (+49 -39)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_url_cell.dart (+15 -8)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card.dart (+29 -9)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card_cell_builder.dart (+0 -2)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card_container.dart (+8 -1)
📝 frontend/app_flowy/lib/plugins/grid/application/field/field_controller.dart (+21 -0)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/date_cell/date_cell.dart (+2 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_cell.dart (+4 -3)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_editor.dart (+9 -9)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/toolbar/grid_group.dart (+6 -1)
📝 frontend/app_flowy/packages/appflowy_board/CHANGELOG.md (+3 -0)
📝 frontend/app_flowy/packages/appflowy_board/README.md (+129 -76)
frontend/app_flowy/packages/appflowy_board/example/gifs/appflowy_board_builders.jpg (+0 -0)

...and 32 more files

📄 Description

No description provided


🔄 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/999 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 9/7/2022 **Status:** ❌ Closed **Base:** `release/0.0.5` ← **Head:** `fix/005` --- ### 📝 Commits (10+) - [`e496f93`](https://github.com/AppFlowy-IO/AppFlowy/commit/e496f93b9e397efba058c3f9138a627e327dbc62) refactor: Migrate the markdown feature from Dart to Rust - [`4de0008`](https://github.com/AppFlowy-IO/AppFlowy/commit/4de0008e443f15c6039053e81992556526fecf66) chore: disable group field that does not support grouping - [`e3d0e7c`](https://github.com/AppFlowy-IO/AppFlowy/commit/e3d0e7c871698ade139a431b7e178e9998d7f00d) docs: readme for appflowy_board - [`a5cbb82`](https://github.com/AppFlowy-IO/AppFlowy/commit/a5cbb8254d5d139ccf84cb307209075187506701) Merge pull request #984 from AppFlowy-IO/feat/appflowy_board_docs - [`bfebea7`](https://github.com/AppFlowy-IO/AppFlowy/commit/bfebea7b31d2b1ccaaae8b5e4cf7d2acee249164) fix: add new created row - [`c97cb7c`](https://github.com/AppFlowy-IO/AppFlowy/commit/c97cb7c194c8ee2421614cea756dca35dae12a56) Merge pull request #983 from AppFlowy-IO/feat/disable_unsupport_group_field - [`dbcddc4`](https://github.com/AppFlowy-IO/AppFlowy/commit/dbcddc464f7fda9f5615d860384866bbcae42126) Merge pull request #987 from AppFlowy-IO/feat/fix_delete_card_bugs - [`4a21a10`](https://github.com/AppFlowy-IO/AppFlowy/commit/4a21a10b948c87312d51ca5c2b3ca5005986285e) fix: editing cell height when editing row contains multi text cell - [`f923549`](https://github.com/AppFlowy-IO/AppFlowy/commit/f9235491fe08fb00945e160fdd06b4d224d7603d) Merge pull request #988 from AppFlowy-IO/feat/edit_multi_text_cell - [`a3d2cef`](https://github.com/AppFlowy-IO/AppFlowy/commit/a3d2cef40a7d554086775a96f2d96550bf29d3dc) Merge pull request #928 from matrixhead/main ### 📊 Changes **52 files changed** (+1707 additions, -1074 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+25 -26) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart` (+31 -18) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+30 -24) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_cell.dart` (+45 -14) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_date_cell.dart` (+11 -4) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_number_cell.dart` (+10 -3) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart` (+20 -19) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_text_cell.dart` (+49 -39) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_url_cell.dart` (+15 -8) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card.dart` (+29 -9) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card_cell_builder.dart` (+0 -2) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card_container.dart` (+8 -1) 📝 `frontend/app_flowy/lib/plugins/grid/application/field/field_controller.dart` (+21 -0) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/date_cell/date_cell.dart` (+2 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_cell.dart` (+4 -3) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/select_option_cell/select_option_editor.dart` (+9 -9) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/toolbar/grid_group.dart` (+6 -1) 📝 `frontend/app_flowy/packages/appflowy_board/CHANGELOG.md` (+3 -0) 📝 `frontend/app_flowy/packages/appflowy_board/README.md` (+129 -76) ➕ `frontend/app_flowy/packages/appflowy_board/example/gifs/appflowy_board_builders.jpg` (+0 -0) _...and 32 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:38:01 +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#4484
No description provided.