소스 검색

fix: compatibility issues for currentStrategy.features is null (#17581)

tags/1.2.0
Good Wood 6 달 전
부모
커밋
7b7ac7a495
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      web/app/components/workflow/nodes/agent/panel.tsx

+ 1
- 1
web/app/components/workflow/nodes/agent/panel.tsx 파일 보기

@@ -110,7 +110,7 @@ const AgentPanel: FC<NodePanelProps<AgentNodeType>> = (props) => {
/>
</Field>
<div className='px-4 py-2'>
{isChatMode && currentStrategy?.features.includes(AgentFeature.HISTORY_MESSAGES) && (
{isChatMode && currentStrategy?.features?.includes(AgentFeature.HISTORY_MESSAGES) && (
<>
<Split />
<MemoryConfig

Loading…
취소
저장