reference Quill CSS theme using BaseUrl so that it works in .NET MAUI as well as web

This commit is contained in:
sbwalker 2024-11-25 14:19:58 -05:00
parent 737740a3ca
commit 844778d36a

View File

@ -277,7 +277,7 @@
{
// include CSS theme
var interop = new Interop(JSRuntime);
await interop.IncludeLink("", "stylesheet", $"css/quill/quill.{_theme}.css", "text/css", "", "", "");
await interop.IncludeLink("", "stylesheet", $"{PageState?.Alias.BaseUrl}/css/quill/quill.{_theme}.css", "text/css", "", "", "");
}
await base.OnAfterRenderAsync(firstRender);