From 065122a2aef3db36704d7f5dbe01937e022f1964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9D=9E=E6=B3=95=E6=93=8D=E4=BD=9C?= Date: Wed, 25 Feb 2026 23:15:51 +0800 Subject: [PATCH] fix: incorrect placeholder color in dark mode (#32568) --- .../nodes/_base/components/editor/code-editor/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/workflow/nodes/_base/components/editor/code-editor/index.tsx b/web/app/components/workflow/nodes/_base/components/editor/code-editor/index.tsx index 4714139541..10e48560e7 100644 --- a/web/app/components/workflow/nodes/_base/components/editor/code-editor/index.tsx +++ b/web/app/components/workflow/nodes/_base/components/editor/code-editor/index.tsx @@ -167,7 +167,7 @@ const CodeEditor: FC = ({ }} onMount={handleEditorDidMount} /> - {!outPutValue && !isFocus &&
{placeholder}
} + {!outPutValue && !isFocus &&
{placeholder}
} )