소스 검색

fix: prompt editor insert quickly (#4004)

zxhlyh 1 년 전
부모
커밋
8b3edac091
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      web/app/components/base/prompt-editor/index.tsx

+ 1 - 1
web/app/components/base/prompt-editor/index.tsx

@@ -115,7 +115,7 @@ const PromptEditor: FC<PromptEditorProps> = ({
       WorkflowVariableBlockNode,
       VariableValueBlockNode,
     ],
-    editorState: value ? textToEditorState(value as string) : null,
+    editorState: textToEditorState(value || ''),
     onError: (error: Error) => {
       throw error
     },