From f5d85bd179056e82fdaf40098ad1f67730311f14 Mon Sep 17 00:00:00 2001 From: Anna <16231288+HumbleDeer@users.noreply.github.com> Date: Mon, 20 Oct 2025 13:15:33 +0200 Subject: [PATCH 1/2] Correct sample text in Editors.tsx --- docs/sections/Editors.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sections/Editors.tsx b/docs/sections/Editors.tsx index 0e358ac..209bbc4 100644 --- a/docs/sections/Editors.tsx +++ b/docs/sections/Editors.tsx @@ -58,7 +58,7 @@ export const Editors: FC = ({ id }) => ( triggerImmediately strategies={[EMOJI_STRATEGY]} option={{ dropdown: { maxCount: 3 } }} - defaultValue="Hello, Textarea. This is sample. :smi" + defaultValue="Hello, Textarea. This is a sample. :smi" />
@@ -95,7 +95,7 @@ export const Editors: FC = ({ id }) => ( strategies={[EMOJI_STRATEGY]} codeMirrorOptions={{ lineNumbers: true, - value: "Hello, CodeMirror. This is sample. :smi", + value: "Hello, CodeMirror. This is a sample. :smi", }} option={{ dropdown: { maxCount: 3 } }} /> From 97b031c68a40ba89b1b764c20dd71d72970f8166 Mon Sep 17 00:00:00 2001 From: Anna <16231288+HumbleDeer@users.noreply.github.com> Date: Mon, 20 Oct 2025 13:22:17 +0200 Subject: [PATCH 2/2] Moved up the CodeMirror options value Moved the CodeMirror `options=` value up to underneath the strategy value, to match the other examples. This makes it more consistent. --- docs/sections/Editors.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sections/Editors.tsx b/docs/sections/Editors.tsx index 209bbc4..416c704 100644 --- a/docs/sections/Editors.tsx +++ b/docs/sections/Editors.tsx @@ -93,11 +93,11 @@ export const Editors: FC = ({ id }) => (