From a25faa334adee4319d9f06ed1e9adee9bd00a1f8 Mon Sep 17 00:00:00 2001 From: Nite Knite Date: Sun, 7 Dec 2025 20:36:10 +0800 Subject: [PATCH] fix: hide supplementary text for platform logo properly in Safari (#29238) --- web/app/components/header/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/components/header/index.tsx b/web/app/components/header/index.tsx index e43a8bfa25..77d2258c48 100644 --- a/web/app/components/header/index.tsx +++ b/web/app/components/header/index.tsx @@ -45,7 +45,8 @@ const Header = () => { const renderLogo = () => (

- + + {isBrandingEnabled && systemFeatures.branding.application_title ? systemFeatures.branding.application_title : 'Dify'} {systemFeatures.branding.enabled && systemFeatures.branding.workspace_logo ? { alt='logo' /> : } - {isBrandingEnabled && systemFeatures.branding.application_title ? systemFeatures.branding.application_title : 'dify'}

)