fix: app logo (#4483)

This commit is contained in:
zxhlyh
2024-05-17 18:02:00 +08:00
committed by GitHub
parent 528faceb35
commit 8b931b085c
3 changed files with 9 additions and 8 deletions

View File

@@ -146,14 +146,14 @@ const ConfigPanel = () => {
? null
: (
<div className={`flex items-center justify-end ${isMobile && 'w-full'}`}>
<a className='flex items-center pr-3 space-x-3' href="https://dify.ai/" target="_blank">
<div className='flex items-center pr-3 space-x-3'>
<span className='uppercase'>{t('share.chat.powerBy')}</span>
{
customConfig?.replace_webapp_logo
? <img src={customConfig?.replace_webapp_logo} alt='logo' className='block w-auto h-5' />
: <FootLogo />
}
</a>
</div>
</div>
)
}