Update AbpComponentDemoSectionTagHelper.cs

pull/9032/head
maliming 4 years ago committed by GitHub
parent 4274e303e4
commit 4092497c47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -120,7 +120,10 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo.Views.Components.Themes.S
return sourceBuilder.ToString();
}
else sourceBuilder?.AppendLine(line);
else
{
sourceBuilder?.AppendLine(line);
}
}
throw new AbpException($"Could not find {Title} demo section inside {ViewPath}");

Loading…
Cancel
Save