From 6089a55da628b8ecd2174d370b9a9cc89a89c583 Mon Sep 17 00:00:00 2001 From: G30 <50341825+silentoplayz@users.noreply.github.com> Date: Fri, 20 Mar 2026 16:48:25 -0400 Subject: [PATCH] fix(ui): chat input triggers correctly re-trigger on backspace (#22899) --- src/lib/components/common/RichTextInput/suggestions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/common/RichTextInput/suggestions.ts b/src/lib/components/common/RichTextInput/suggestions.ts index 92111f1f19..7793b99337 100644 --- a/src/lib/components/common/RichTextInput/suggestions.ts +++ b/src/lib/components/common/RichTextInput/suggestions.ts @@ -22,7 +22,7 @@ export function getSuggestionRenderer(Component: any, ComponentProps = {}) { component: Component, target: container, props: { - char: props?.text, + char: props?.text?.charAt(0), query: props?.query, command: (item) => { props.command({ id: item.id, label: item.label });