From f2980503b4b4fa4d32b212f12b76be753a2a8326 Mon Sep 17 00:00:00 2001
From: steffenrapp <88974099+steffenrapp@users.noreply.github.com>
Date: Sat, 23 May 2026 18:06:21 +0200
Subject: [PATCH] fix(editor): sorting of page emoji display toggle (#15020)
Fixes the order of the new setting toggle introduced in #14999.
It appeared between "Auto-title new docs with current date" and "New doc
date format" which both belong together.
## Summary by CodeRabbit
* **Style**
* Repositioned the "display add icon option" setting within General
settings for improved interface organization and logical grouping.
[](https://app.coderabbit.ai/change-stack/toeverything/AFFiNE/pull/15020?utm_source=github_walkthrough&utm_medium=github&utm_campaign=change_stack)
---
.../general-setting/editor/general.tsx | 28 +++++++++----------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/packages/frontend/core/src/desktop/dialogs/setting/general-setting/editor/general.tsx b/packages/frontend/core/src/desktop/dialogs/setting/general-setting/editor/general.tsx
index e5baa97631..1564048d36 100644
--- a/packages/frontend/core/src/desktop/dialogs/setting/general-setting/editor/general.tsx
+++ b/packages/frontend/core/src/desktop/dialogs/setting/general-setting/editor/general.tsx
@@ -487,20 +487,6 @@ export const NewDocDateTitleSettings = () => {
onChange={onToggleAutoDateTitle}
/>
-
-
-
{settings.autoTitleNewDocWithCurrentDate ? (
{
) : null}
+
+
+
>
);
};