mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-11 11:58:58 +08:00
Fix/10584 wrong message when no custom tool available in custom tool list (#11851)
This commit is contained in:
parent
5a8a901560
commit
de3911e930
@ -1,13 +1,19 @@
|
||||
'use client'
|
||||
import { useSearchParams } from 'next/navigation'
|
||||
import { useTranslation } from 'react-i18next'
|
||||
|
||||
const Empty = () => {
|
||||
const { t } = useTranslation()
|
||||
const searchParams = useSearchParams()
|
||||
|
||||
return (
|
||||
<div className='flex flex-col items-center'>
|
||||
<div className="shrink-0 w-[163px] h-[149px] bg-cover bg-no-repeat bg-[url('~@/app/components/tools/add-tool-modal/empty.png')]"></div>
|
||||
<div className='mb-1 text-[13px] font-medium text-text-primary leading-[18px]'>{t('tools.addToolModal.emptyTitle')}</div>
|
||||
<div className='text-[13px] text-text-tertiary leading-[18px]'>{t('tools.addToolModal.emptyTip')}</div>
|
||||
<div className='mb-1 text-[13px] font-medium text-text-primary leading-[18px]'>
|
||||
{t(`tools.addToolModal.${searchParams.get('category') === 'workflow' ? 'emptyTitle' : 'emptyTitleCustom'}`)}
|
||||
</div>
|
||||
<div className='text-[13px] text-text-tertiary leading-[18px]'>
|
||||
{t(`tools.addToolModal.${searchParams.get('category') === 'workflow' ? 'emptyTip' : 'emptyTipCustom'}`)}
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
@ -31,6 +31,8 @@ const translation = {
|
||||
manageInTools: 'Manage in Tools',
|
||||
emptyTitle: 'No workflow tool available',
|
||||
emptyTip: 'Go to "Workflow -> Publish as Tool"',
|
||||
emptyTitleCustom: 'No custom tool available',
|
||||
emptyTipCustom: 'Create a custom tool',
|
||||
},
|
||||
createTool: {
|
||||
title: 'Create Custom Tool',
|
||||
|
@ -31,6 +31,8 @@ const translation = {
|
||||
manageInTools: '去工具列表管理',
|
||||
emptyTitle: '没有可用的工作流工具',
|
||||
emptyTip: '去 “工作流 -> 发布为工具” 添加',
|
||||
emptyTitleCustom: '没有可用的自定义工具',
|
||||
emptyTipCustom: '创建自定义工具',
|
||||
},
|
||||
createTool: {
|
||||
title: '创建自定义工具',
|
||||
|
Loading…
x
Reference in New Issue
Block a user