wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { RiMindMap } from '@remixicon/react'
import { useTranslation } from 'react-i18next'
 
const FailBranchCard = () => {
  const { t } = useTranslation()
 
  return (
    <div className='px-4 pt-2'>
      <div className='rounded-[10px] bg-workflow-process-bg p-4'>
        <div className='mb-2 flex h-8 w-8 items-center justify-center rounded-[10px] border-[0.5px] border-components-card-border bg-components-card-bg shadow-lg'>
          <RiMindMap className='h-5 w-5 text-text-tertiary' />
        </div>
        <div className='system-sm-medium mb-1 text-text-secondary'>
          {t('workflow.nodes.common.errorHandle.failBranch.customize')}
        </div>
        <div className='system-xs-regular text-text-tertiary'>
          {t('workflow.nodes.common.errorHandle.failBranch.customizeTip')}
          &nbsp;
          <a
            href='https://docs.dify.ai/guides/workflow/error-handling'
            target='_blank'
            className='text-text-accent'
          >
            {t('workflow.common.learnMore')}
          </a>
        </div>
      </div>
    </div>
  )
}
 
export default FailBranchCard