From 8981e22dd4df2c182fe4d845e7d0cc2677ff2d36 Mon Sep 17 00:00:00 2001 From: Suguru Inoue Date: Tue, 29 Apr 2025 13:45:30 +0200 Subject: [PATCH] fix(editor): "Trigger node not found" error when chat message is entered (#14954) --- .../src/components/CanvasChat/CanvasChat.vue | 16 +++++- .../components/ChatMessagesPanel.vue | 14 ++++- .../CanvasChat/composables/useChatState.ts | 56 +++---------------- .../CanvasChat/composables/useChatTrigger.ts | 44 ++++----------- .../future/components/LogsOverviewRow.vue | 22 ++++---- .../src/components/RunDataAi/utils.test.ts | 27 +++++++++ .../src/components/RunDataAi/utils.ts | 10 ++++ .../src/composables/usePushConnection.ts | 31 ++++++++++ .../editor-ui/src/plugins/icons/custom.ts | 12 ---- 9 files changed, 125 insertions(+), 107 deletions(-) diff --git a/packages/frontend/editor-ui/src/components/CanvasChat/CanvasChat.vue b/packages/frontend/editor-ui/src/components/CanvasChat/CanvasChat.vue index 1ffaa825fe7..93ff52d5f12 100644 --- a/packages/frontend/editor-ui/src/components/CanvasChat/CanvasChat.vue +++ b/packages/frontend/editor-ui/src/components/CanvasChat/CanvasChat.vue @@ -1,5 +1,5 @@