소스 검색

fix: llm editor readonly cover error (#3752)

tags/0.6.5
Joel 1 년 전
부모
커밋
3cd8e6f5c6
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      web/app/components/workflow/nodes/_base/components/prompt/editor.tsx

+ 1
- 1
web/app/components/workflow/nodes/_base/components/prompt/editor.tsx 파일 보기

@@ -138,7 +138,7 @@ const Editor: FC<Props> = ({

{/* Min: 80 Max: 560. Header: 24 */}
<div className={cn('pb-2', isExpand && 'flex flex-col grow')}>
<div className={cn(isExpand ? 'grow' : 'max-h-[536px]', 'px-3 min-h-[56px] overflow-y-auto')}>
<div className={cn(isExpand ? 'grow' : 'max-h-[536px]', 'relative px-3 min-h-[56px] overflow-y-auto')}>
<PromptEditor
instanceId={instanceId}
compact

Loading…
취소
저장