Browse Source

Update AbpComponentDemoSectionTagHelper.cs

pull/9032/head
maliming 5 years ago
committed by GitHub
parent
commit
4092497c47
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/TagHelpers/AbpComponentDemoSectionTagHelper.cs

5
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/TagHelpers/AbpComponentDemoSectionTagHelper.cs

@ -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