Browse Source
Update bundle error color in AbpTagHelperResourceService.cs
pull/19343/head
Enis Necipoglu
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/TagHelpers/AbpTagHelperResourceService.cs
|
|
|
@ -98,7 +98,7 @@ public abstract class AbpTagHelperResourceService : ITransientDependency |
|
|
|
|
|
|
|
protected virtual void AddErrorScript(ViewContext viewContext, TagHelper tagHelper, TagHelperContext context, TagHelperOutput output, BundleFile file, string bundleName) |
|
|
|
{ |
|
|
|
output.Content.AppendHtml($"<script>console.log(\"%cCould not find the bundle file '{file.FileName}' for the bundle '{bundleName}'!\", 'background: yellow; font-size:20px;');</script>{Environment.NewLine}"); |
|
|
|
output.Content.AppendHtml($"<script>console.log(\"%cCould not find the bundle file '{file.FileName}' for the bundle '{bundleName}'!\", 'background: yellow; color: black; font-size:20px;');</script>{Environment.NewLine}"); |
|
|
|
} |
|
|
|
|
|
|
|
protected virtual string GenerateBundleName(List<BundleTagHelperItem> bundleItems) |
|
|
|
|