diff --git a/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/Themes/Basic/Branding.razor b/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/Themes/Basic/Branding.razor
index ac629423ce..5e0537b2b2 100644
--- a/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/Themes/Basic/Branding.razor
+++ b/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/Themes/Basic/Branding.razor
@@ -1,3 +1,9 @@
-@using Volo.Abp.Ui.Branding
+@using Volo.Abp.Ui.Branding
@inject IBrandingProvider BrandingProvider
-@BrandingProvider.AppName
+
+ @if (!BrandingProvider.LogoUrl.IsNullOrWhiteSpace())
+ {
+
+ }
+ @BrandingProvider.AppName
+
diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Themes/Basic/Components/Brand/Default.cshtml b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Themes/Basic/Components/Brand/Default.cshtml
index b57f6da4bb..04a4f81c71 100644
--- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Themes/Basic/Components/Brand/Default.cshtml
+++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Themes/Basic/Components/Brand/Default.cshtml
@@ -1,3 +1,9 @@
@using Volo.Abp.Ui.Branding
@inject IBrandingProvider BrandingProvider
-@BrandingProvider.AppName
+
+ @if (!BrandingProvider.LogoUrl.IsNullOrWhiteSpace())
+ {
+
+ }
+ @BrandingProvider.AppName
+