Merge pull request #4870 from sbwalker/dev

reference Quill CSS theme using BaseUrl so that it works in .NET MAUI as well as web
This commit is contained in:
Shaun Walker
2024-11-25 14:20:15 -05:00
committed by GitHub

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);