Adds separate call for css assets

This commit is contained in:
Bjarke Berg
2021-04-15 09:52:55 +02:00
parent 03002e16d3
commit f1dbf6584b
5 changed files with 21 additions and 12 deletions

View File

@@ -10,7 +10,6 @@ using Umbraco.Cms.Core.WebAssets;
using Umbraco.Cms.Infrastructure.WebAssets;
using Umbraco.Cms.Web.BackOffice.Controllers;
using Umbraco.Cms.Web.BackOffice.Security;
using Umbraco.Extensions;
namespace Umbraco.Extensions
{
@@ -124,7 +123,7 @@ namespace Umbraco.Extensions
public static async Task<IHtmlContent> AngularValueTinyMceAssetsAsync(this IHtmlHelper html, IRuntimeMinifier runtimeMinifier)
{
var files = await runtimeMinifier.GetAssetPathsAsync(BackOfficeWebAssets.UmbracoTinyMceJsBundleName);
var files = await runtimeMinifier.GetJsAssetPathsAsync(BackOfficeWebAssets.UmbracoTinyMceJsBundleName);
var sb = new StringBuilder();