[PR #7857] [MERGED] fix: paste issue with the nested image #8167

Closed
opened 2026-03-23 23:22:55 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/7857
Author: @LucasXu0
Created: 4/29/2025
Status: Merged
Merged: 4/30/2025
Merged by: @LucasXu0

Base: mainHead: settings_page_ui


📝 Commits (10+)

  • 481b5df chore: replace delete button style
  • a0043d1 chore: replace textfield in settings page
  • 8839ef2 fix: icon text align issue in database
  • 317c3d4 fix: member count is 0
  • f370303 fix: invite member issue on mobile
  • 680fe96 fix: checklist item align issue on Windows
  • 41f72da fix: integration test
  • f934836 Merge branch 'main' into settings_page_ui
  • 15c9de2 fix: support converting paragraph to markdown
  • c22ff58 chore: update editor version

📊 Changes

21 files changed (+146 additions, -127 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/shared/settings.dart (+1 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/shared/mobile_page_card.dart (+3 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/setting/workspace/invite_members_screen.dart (+26 -24)
📝 frontend/appflowy_flutter/lib/mobile/presentation/setting/workspace/workspace_setting_group.dart (+11 -2)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/checklist_cell_editor.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/checklist_cell_textfield.dart (+6 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/backtick_character_command.dart (+10 -3)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/shortcuts/custom_delete_command.dart (+8 -1)
📝 frontend/appflowy_flutter/lib/user/application/password/password_http_service.dart (+8 -0)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/continue_with/set_new_password.dart (+10 -3)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/shared_widget.dart (+2 -10)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/account/password/change_password.dart (+5 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/account/password/setup_password.dart (+5 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_shortcuts_view.dart (+4 -41)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/shared/settings_input_field.dart (+21 -32)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/inivitation/m_invite_member_by_link.dart (+2 -2)
📝 frontend/appflowy_flutter/packages/appflowy_ui/lib/src/component/textfield/textfield.dart (+6 -1)
📝 frontend/appflowy_flutter/pubspec.lock (+3 -3)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -1)
📝 frontend/resources/translations/en.json (+1 -0)

...and 1 more files

📄 Description

Feature Preview

  • paste issue with the nested image
  • icon align issue in database's checklist item
  • workspace member zero count
  • empty page name
  • update deletion dialog style
  • replace textfield in settings page with AFTextField
  • close https://github.com/AppFlowy-IO/AppFlowy/issues/7856

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/7857 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 4/29/2025 **Status:** ✅ Merged **Merged:** 4/30/2025 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `settings_page_ui` --- ### 📝 Commits (10+) - [`481b5df`](https://github.com/AppFlowy-IO/AppFlowy/commit/481b5df3f64c5e6c4d75411fa523dc65a9b925c5) chore: replace delete button style - [`a0043d1`](https://github.com/AppFlowy-IO/AppFlowy/commit/a0043d1a44c09c1fba666ed97d66eac626de9615) chore: replace textfield in settings page - [`8839ef2`](https://github.com/AppFlowy-IO/AppFlowy/commit/8839ef2bb4878e72c83066cfebf22f92cf0bdf09) fix: icon text align issue in database - [`317c3d4`](https://github.com/AppFlowy-IO/AppFlowy/commit/317c3d44c0fbe629946a1975729eeb6f3946e35f) fix: member count is 0 - [`f370303`](https://github.com/AppFlowy-IO/AppFlowy/commit/f37030346e11f3fb22d94efbf5b1961b6f36dbfe) fix: invite member issue on mobile - [`680fe96`](https://github.com/AppFlowy-IO/AppFlowy/commit/680fe965cb779bcc97822c03bd37d85748810a4b) fix: checklist item align issue on Windows - [`41f72da`](https://github.com/AppFlowy-IO/AppFlowy/commit/41f72da842e2b1ea586622aa19ad01f841d8d8e6) fix: integration test - [`f934836`](https://github.com/AppFlowy-IO/AppFlowy/commit/f93483614a498c7e711bed4bf0d13758cf5c983a) Merge branch 'main' into settings_page_ui - [`15c9de2`](https://github.com/AppFlowy-IO/AppFlowy/commit/15c9de2112e36b8cd4f1ee086599eb1de32534f2) fix: support converting paragraph to markdown - [`c22ff58`](https://github.com/AppFlowy-IO/AppFlowy/commit/c22ff58c5bf98ef38259b075d69bebf64566dc4b) chore: update editor version ### 📊 Changes **21 files changed** (+146 additions, -127 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/shared/settings.dart` (+1 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/shared/mobile_page_card.dart` (+3 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/setting/workspace/invite_members_screen.dart` (+26 -24) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/setting/workspace/workspace_setting_group.dart` (+11 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/checklist_cell_editor.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/checklist_cell_textfield.dart` (+6 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/base/backtick_character_command.dart` (+10 -3) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/shortcuts/custom_delete_command.dart` (+8 -1) 📝 `frontend/appflowy_flutter/lib/user/application/password/password_http_service.dart` (+8 -0) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/continue_with/set_new_password.dart` (+10 -3) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/shared_widget.dart` (+2 -10) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/account/password/change_password.dart` (+5 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/account/password/setup_password.dart` (+5 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_shortcuts_view.dart` (+4 -41) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/shared/settings_input_field.dart` (+21 -32) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/inivitation/m_invite_member_by_link.dart` (+2 -2) 📝 `frontend/appflowy_flutter/packages/appflowy_ui/lib/src/component/textfield/textfield.dart` (+6 -1) 📝 `frontend/appflowy_flutter/pubspec.lock` (+3 -3) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -1) 📝 `frontend/resources/translations/en.json` (+1 -0) _...and 1 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] paste issue with the nested image - [x] icon align issue in database's checklist item - [x] workspace member zero count - [x] empty page name - [x] update deletion dialog style - [x] replace textfield in settings page with AFTextField - [x] close https://github.com/AppFlowy-IO/AppFlowy/issues/7856 <!--- 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. - [ ] 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:22:55 +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#8167
No description provided.