[PR #998] [CLOSED] Fix/005 #4483

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

📋 Pull Request Information

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

Base: mainHead: fix/005


📝 Commits (7)

  • 3ae2818 fix: rebuild card when create new field from row detail page
  • 86e2091 fix: reduce rebuild while editing text field
  • 951206d chore: handle edit state
  • 29e7e01 chore: hide edit button when start editing
  • 0c45e3c fix: remove default group for checkbox
  • 8894e9c chore: update create board template
  • 9bc2bc8 chore: make select option cell selectable

📊 Changes

21 files changed (+292 additions, -236 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/board/application/board_bloc.dart (+0 -1)
📝 frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart (+31 -18)
📝 frontend/app_flowy/lib/plugins/board/presentation/board_page.dart (+10 -1)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_cell.dart (+38 -11)
📝 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 -38)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/board_url_cell.dart (+15 -8)
📝 frontend/app_flowy/lib/plugins/board/presentation/card/card.dart (+28 -8)
📝 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/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/packages/appflowy_board/lib/src/widgets/styled_widgets/footer.dart (+1 -1)
📝 frontend/rust-lib/flowy-grid/src/services/group/action.rs (+3 -1)
📝 frontend/rust-lib/flowy-grid/src/services/group/configuration.rs (+2 -5)
📝 frontend/rust-lib/flowy-grid/src/services/group/controller.rs (+8 -2)
📝 frontend/rust-lib/flowy-grid/src/services/group/controller_impls/checkbox_controller.rs (+4 -0)

...and 1 more files

📄 Description

fix some bugs


🔄 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/998 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 9/7/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `fix/005` --- ### 📝 Commits (7) - [`3ae2818`](https://github.com/AppFlowy-IO/AppFlowy/commit/3ae28186e8ebc34cf3d4e49676da72be25dfb542) fix: rebuild card when create new field from row detail page - [`86e2091`](https://github.com/AppFlowy-IO/AppFlowy/commit/86e2091ccfd839802c63508904890aa55f4c62b4) fix: reduce rebuild while editing text field - [`951206d`](https://github.com/AppFlowy-IO/AppFlowy/commit/951206db7107c264e2e7f89b95b381ef85f461b0) chore: handle edit state - [`29e7e01`](https://github.com/AppFlowy-IO/AppFlowy/commit/29e7e01146bef4075ab401ebf117943c9640349e) chore: hide edit button when start editing - [`0c45e3c`](https://github.com/AppFlowy-IO/AppFlowy/commit/0c45e3ce955e317c5facbefa42fa0f0b375a1223) fix: remove default group for checkbox - [`8894e9c`](https://github.com/AppFlowy-IO/AppFlowy/commit/8894e9c784b95ab0751b1f499c37bc22588cd0b6) chore: update create board template - [`9bc2bc8`](https://github.com/AppFlowy-IO/AppFlowy/commit/9bc2bc82bef2403c07974cdfdccb71072d72193b) chore: make select option cell selectable ### 📊 Changes **21 files changed** (+292 additions, -236 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/board/application/board_bloc.dart` (+0 -1) 📝 `frontend/app_flowy/lib/plugins/board/application/card/card_bloc.dart` (+31 -18) 📝 `frontend/app_flowy/lib/plugins/board/presentation/board_page.dart` (+10 -1) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_cell.dart` (+38 -11) 📝 `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 -38) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/board_url_cell.dart` (+15 -8) 📝 `frontend/app_flowy/lib/plugins/board/presentation/card/card.dart` (+28 -8) 📝 `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/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/packages/appflowy_board/lib/src/widgets/styled_widgets/footer.dart` (+1 -1) 📝 `frontend/rust-lib/flowy-grid/src/services/group/action.rs` (+3 -1) 📝 `frontend/rust-lib/flowy-grid/src/services/group/configuration.rs` (+2 -5) 📝 `frontend/rust-lib/flowy-grid/src/services/group/controller.rs` (+8 -2) 📝 `frontend/rust-lib/flowy-grid/src/services/group/controller_impls/checkbox_controller.rs` (+4 -0) _...and 1 more files_ </details> ### 📄 Description fix some bugs --- <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:00 +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#4483
No description provided.