From fa5eb16054af10d3c04a2a47b1d05d98d72cb25c Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 25 Nov 2025 15:46:41 +0200 Subject: [PATCH] fix(note_autocomplete): regression in board entry --- apps/client/src/widgets/react/NoteAutocomplete.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/react/NoteAutocomplete.tsx b/apps/client/src/widgets/react/NoteAutocomplete.tsx index c61285603..fb9696940 100644 --- a/apps/client/src/widgets/react/NoteAutocomplete.tsx +++ b/apps/client/src/widgets/react/NoteAutocomplete.tsx @@ -92,7 +92,7 @@ export default function NoteAutocomplete({ id, inputRef: externalInputRef, text, note_autocomplete.setText($autoComplete, text); } else { $autoComplete.setSelectedNotePath(""); - $autoComplete.autocomplete("val", "").trigger("change"); + $autoComplete.autocomplete("val", ""); ref.current.value = ""; } }, [text, noteId]);