mirror of
https://github.com/langgenius/dify.git
synced 2026-05-04 17:38:04 +08:00
refact workflow run log
This commit is contained in:
@ -36,8 +36,6 @@ type Props = {
|
||||
onShowRetryDetail?: (detail: NodeTracing[]) => void
|
||||
onShowAgentResultList?: (detail: AgentLogItemWithChildren[]) => void
|
||||
notShowIterationNav?: boolean
|
||||
justShowIterationNavArrow?: boolean
|
||||
justShowRetryNavArrow?: boolean
|
||||
}
|
||||
|
||||
const NodePanel: FC<Props> = ({
|
||||
@ -50,7 +48,6 @@ const NodePanel: FC<Props> = ({
|
||||
onShowRetryDetail,
|
||||
onShowAgentResultList,
|
||||
notShowIterationNav,
|
||||
justShowIterationNavArrow,
|
||||
}) => {
|
||||
const [collapseState, doSetCollapseState] = useState<boolean>(true)
|
||||
const setCollapseState = useCallback((state: boolean) => {
|
||||
@ -138,7 +135,6 @@ const NodePanel: FC<Props> = ({
|
||||
<IterationLogTrigger
|
||||
nodeInfo={nodeInfo}
|
||||
onShowIterationResultList={onShowIterationDetail}
|
||||
justShowIterationNavArrow={justShowIterationNavArrow}
|
||||
/>
|
||||
)}
|
||||
{isRetryNode && onShowRetryDetail && (
|
||||
|
||||
Reference in New Issue
Block a user