fix installation CSS issue

This commit is contained in:
Shaun Walker
2022-04-02 09:29:12 -04:00
parent 268e0e72a3
commit 6b100cf70b
2 changed files with 3 additions and 3 deletions

View File

@ -72,13 +72,13 @@ namespace Oqtane.UI
}
}
public Task IncludeLink(string id, string rel, string href, string type, string integrity, string crossorigin)
public Task IncludeLink(string id, string rel, string href, string type, string integrity, string crossorigin, string includebefore)
{
try
{
_jsRuntime.InvokeVoidAsync(
"Oqtane.Interop.includeLink",
id, rel, href, type, integrity, crossorigin);
id, rel, href, type, integrity, crossorigin, includebefore);
return Task.CompletedTask;
}
catch