[PR #5654] [MERGED] fix: v0.6.2 issues #6938

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5654
Author: @LucasXu0
Created: 6/28/2024
Status: Merged
Merged: 7/1/2024
Merged by: @LucasXu0

Base: mainHead: fix_kanban


📝 Commits (10+)

  • 08feef5 fix: remove create button in move to menu
  • 886c4ee fix: add loading indicator when duplicating space
  • 574709c fix: sidebar header expand icon status
  • 6e72ed0 fix: text within select tag overflow
  • add8a55 fix: callout block icon align issue
  • 16c7bb1 feat: sync the space icon when creating a space
  • 6e54149 Merge branch 'main' into fix_kanban
  • 1423402 fix: duplicated hover views
  • be97962 fix: cover image doesn't update
  • 7088206 Merge branch 'main' into fix_kanban

📊 Changes

25 files changed (+142 additions, -98 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell/desktop_grid/desktop_grid_select_option_cell.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell/desktop_row_detail/desktop_row_detail_select_option_cell.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/extension.dart (+0 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/select_option_cell_editor.dart (+5 -7)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/select_option_text_field.dart (+4 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/application/document_bloc.dart (+0 -15)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/callout/callout_block_component.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/document_header_node_widget.dart (+5 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/migration/editor_migration.dart (+3 -4)
📝 frontend/appflowy_flutter/lib/workspace/application/sidebar/space/space_bloc.dart (+22 -21)
📝 frontend/appflowy_flutter/lib/workspace/application/view/view_ext.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/workspace/application/workspace/workspace_service.dart (+5 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/move_to/move_page_menu.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar.dart (+13 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/shared_widget.dart (+9 -3)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/sidebar_space_header.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/sidebar_space_menu.dart (+17 -10)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_item.dart (+31 -22)
📝 frontend/rust-lib/event-integration-test/src/chat_event.rs (+1 -0)
📝 frontend/rust-lib/event-integration-test/src/database_event.rs (+3 -0)

...and 5 more files

📄 Description

Feature Preview

  • fix: sidebar header expand icon status
  • text within select tag overflow
  • add loading indicator when duplicating space
  • remove create button in move to menu
  • duplicated selected status
  • callout icon align issue

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/5654 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 6/28/2024 **Status:** ✅ Merged **Merged:** 7/1/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `fix_kanban` --- ### 📝 Commits (10+) - [`08feef5`](https://github.com/AppFlowy-IO/AppFlowy/commit/08feef5e7bfea00fa6f75c0ed9910ca2a4c2ea87) fix: remove create button in move to menu - [`886c4ee`](https://github.com/AppFlowy-IO/AppFlowy/commit/886c4eebf19dc136250570b91b1991045a0e3b16) fix: add loading indicator when duplicating space - [`574709c`](https://github.com/AppFlowy-IO/AppFlowy/commit/574709c3f5f648fffac3d2504565323d857329e9) fix: sidebar header expand icon status - [`6e72ed0`](https://github.com/AppFlowy-IO/AppFlowy/commit/6e72ed023e721731dc9293fceebfabd61eefa6b2) fix: text within select tag overflow - [`add8a55`](https://github.com/AppFlowy-IO/AppFlowy/commit/add8a555757ec681f6204a768f9f4c60b09f0213) fix: callout block icon align issue - [`16c7bb1`](https://github.com/AppFlowy-IO/AppFlowy/commit/16c7bb12287ab07da88776a1607b4515858fc99c) feat: sync the space icon when creating a space - [`6e54149`](https://github.com/AppFlowy-IO/AppFlowy/commit/6e54149a0a7565541e1bccffd75792c682d0c943) Merge branch 'main' into fix_kanban - [`1423402`](https://github.com/AppFlowy-IO/AppFlowy/commit/14234020c97140d52592a97312f88f26a9a32956) fix: duplicated hover views - [`be97962`](https://github.com/AppFlowy-IO/AppFlowy/commit/be9796228408a26e1700a61aa0e3f15a90520d9d) fix: cover image doesn't update - [`7088206`](https://github.com/AppFlowy-IO/AppFlowy/commit/70882066869d577e093dbf86f340f5d4738d5c7c) Merge branch 'main' into fix_kanban ### 📊 Changes **25 files changed** (+142 additions, -98 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell/desktop_grid/desktop_grid_select_option_cell.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell/desktop_row_detail/desktop_row_detail_select_option_cell.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/extension.dart` (+0 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/select_option_cell_editor.dart` (+5 -7) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/select_option_text_field.dart` (+4 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/application/document_bloc.dart` (+0 -15) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/callout/callout_block_component.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/document_header_node_widget.dart` (+5 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/migration/editor_migration.dart` (+3 -4) 📝 `frontend/appflowy_flutter/lib/workspace/application/sidebar/space/space_bloc.dart` (+22 -21) 📝 `frontend/appflowy_flutter/lib/workspace/application/view/view_ext.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/workspace/application/workspace/workspace_service.dart` (+5 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/move_to/move_page_menu.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar.dart` (+13 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/shared_widget.dart` (+9 -3) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/sidebar_space_header.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/sidebar_space_menu.dart` (+17 -10) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_item.dart` (+31 -22) 📝 `frontend/rust-lib/event-integration-test/src/chat_event.rs` (+1 -0) 📝 `frontend/rust-lib/event-integration-test/src/database_event.rs` (+3 -0) _...and 5 more files_ </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 - [x] fix: sidebar header expand icon status - [x] text within select tag overflow - [x] add loading indicator when duplicating space - [x] remove create button in move to menu - [x] duplicated selected status - [x] callout icon align issue <!--- 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) - [ ] 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. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:17:21 +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#6938
No description provided.