[PR #505] [MERGED] Fix some UI bugs #12572

Closed
opened 2026-03-24 21:41:30 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/505
Author: @appflowy
Created: 5/24/2022
Status: Merged
Merged: 5/24/2022
Merged by: @appflowy

Base: mainHead: fix_0.0.4_bugs_2


📝 Commits (7)

  • 7950f81 chore: optimaze error code
  • 36abd96 chore: format error message of date cell
  • 1b5b8f1 chore: auto expand row detail page's cell
  • f521c18 fix: overflow of SelectOptionTagCell
  • 1ae0b18 refactor: grid unit test
  • 5b2b50d refactor: cell data operation
  • 8c7b0bd fix: unit test

📊 Changes

33 files changed (+755 additions, -528 deletions)

View changed files

📝 frontend/app_flowy/assets/translations/en.json (+1 -0)
📝 frontend/app_flowy/lib/workspace/application/grid/cell/date_cal_bloc.dart (+19 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/cell_builder.dart (+1 -3)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/checkbox_cell.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/date_cell/date_cell.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/number_cell.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/select_option_cell/extension.dart (+13 -6)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/select_option_cell/select_option_cell.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/select_option_cell/select_option_editor.dart (+12 -13)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/text_cell.dart (+1 -1)
frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/cell/number_cell.dart (+0 -44)
📝 frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/row_detail.dart (+25 -22)
📝 frontend/app_flowy/packages/flowy_infra_ui/lib/style_widget/hover.dart (+16 -13)
📝 frontend/app_flowy/packages/flowy_infra_ui/lib/widget/rounded_input_field.dart (+6 -3)
📝 frontend/rust-lib/flowy-grid/Flowy.toml (+1 -1)
📝 frontend/rust-lib/flowy-grid/src/entities/cell_entities.rs (+1 -1)
📝 frontend/rust-lib/flowy-grid/src/entities/field_entities.rs (+0 -0)
📝 frontend/rust-lib/flowy-grid/src/entities/mod.rs (+0 -0)
📝 frontend/rust-lib/flowy-grid/src/entities/row_entities.rs (+0 -0)
📝 frontend/rust-lib/flowy-grid/src/event_handler.rs (+1 -1)

...and 13 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/505 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 5/24/2022 **Status:** ✅ Merged **Merged:** 5/24/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_0.0.4_bugs_2` --- ### 📝 Commits (7) - [`7950f81`](https://github.com/AppFlowy-IO/AppFlowy/commit/7950f8170b45d2a450e56b119984916e12509376) chore: optimaze error code - [`36abd96`](https://github.com/AppFlowy-IO/AppFlowy/commit/36abd969ac0080483d1a015ec7c66d31e94507e5) chore: format error message of date cell - [`1b5b8f1`](https://github.com/AppFlowy-IO/AppFlowy/commit/1b5b8f19d734e7577994d901bb66f626c0c279a7) chore: auto expand row detail page's cell - [`f521c18`](https://github.com/AppFlowy-IO/AppFlowy/commit/f521c18512190dc845f88d4e14ea7ecc3399ceae) fix: overflow of SelectOptionTagCell - [`1ae0b18`](https://github.com/AppFlowy-IO/AppFlowy/commit/1ae0b188b1f7b5ebb0807d9bedf864a77072c3e6) refactor: grid unit test - [`5b2b50d`](https://github.com/AppFlowy-IO/AppFlowy/commit/5b2b50dc9cdaf817968a04cfa7651e3f91d5a16c) refactor: cell data operation - [`8c7b0bd`](https://github.com/AppFlowy-IO/AppFlowy/commit/8c7b0bd5a738f5f9e7106a0d1d53916d5337342f) fix: unit test ### 📊 Changes **33 files changed** (+755 additions, -528 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/assets/translations/en.json` (+1 -0) 📝 `frontend/app_flowy/lib/workspace/application/grid/cell/date_cal_bloc.dart` (+19 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/cell_builder.dart` (+1 -3) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/checkbox_cell.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/date_cell/date_cell.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/number_cell.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/select_option_cell/extension.dart` (+13 -6) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/select_option_cell/select_option_cell.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/select_option_cell/select_option_editor.dart` (+12 -13) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/cell/text_cell.dart` (+1 -1) ➖ `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/cell/number_cell.dart` (+0 -44) 📝 `frontend/app_flowy/lib/workspace/presentation/plugins/grid/src/widgets/row/row_detail.dart` (+25 -22) 📝 `frontend/app_flowy/packages/flowy_infra_ui/lib/style_widget/hover.dart` (+16 -13) 📝 `frontend/app_flowy/packages/flowy_infra_ui/lib/widget/rounded_input_field.dart` (+6 -3) 📝 `frontend/rust-lib/flowy-grid/Flowy.toml` (+1 -1) 📝 `frontend/rust-lib/flowy-grid/src/entities/cell_entities.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-grid/src/entities/field_entities.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-grid/src/entities/mod.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-grid/src/entities/row_entities.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-grid/src/event_handler.rs` (+1 -1) _...and 13 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-24 21:41:30 +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#12572
No description provided.