From 7a47da9273df79237d2b42624f1b8f5f12f63191 Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Fri, 7 Mar 2025 11:57:28 +0000 Subject: [PATCH] Add emoji command to title editor --- apps/client/src/features/editor/title-editor.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/client/src/features/editor/title-editor.tsx b/apps/client/src/features/editor/title-editor.tsx index d88ebf31..f876fb93 100644 --- a/apps/client/src/features/editor/title-editor.tsx +++ b/apps/client/src/features/editor/title-editor.tsx @@ -20,6 +20,7 @@ import { History } from "@tiptap/extension-history"; import { buildPageUrl } from "@/features/page/page.utils.ts"; import { useNavigate } from "react-router-dom"; import { useTranslation } from "react-i18next"; +import EmojiCommand from '@/features/editor/extensions/emoji-command.ts'; export interface TitleEditorProps { pageId: string; @@ -67,6 +68,7 @@ export function TitleEditor({ History.configure({ depth: 20, }), + EmojiCommand ], onCreate({ editor }) { if (editor) {