From 44f4f2ce5c8f3c25ca9a774108f35e78f1f8bc4d Mon Sep 17 00:00:00 2001 From: liangqiang2025-stack Date: Thu, 21 May 2026 11:40:34 +0800 Subject: [PATCH] fix: pass paramLabel as componentName to show correct header text (#6655) When code hinter popup is opened, the header should display the actual property name (e.g., 'On Success Message') instead of 'Editor'. Fixes #6655 --- frontend/src/Editor/CodeEditor/SingleLineCodeEditor.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/Editor/CodeEditor/SingleLineCodeEditor.jsx b/frontend/src/Editor/CodeEditor/SingleLineCodeEditor.jsx index c0ee4f17f73..f624289803c 100644 --- a/frontend/src/Editor/CodeEditor/SingleLineCodeEditor.jsx +++ b/frontend/src/Editor/CodeEditor/SingleLineCodeEditor.jsx @@ -407,7 +407,7 @@ const DynamicEditorBridge = (props) => {
- +
@@ -420,3 +420,4 @@ SingleLineCodeEditor.Editor = EditorInput; SingleLineCodeEditor.EditorBridge = DynamicEditorBridge; export default SingleLineCodeEditor; +