Skip to content

Commit

Permalink
Merge pull request #4870 from sbwalker/dev
Browse files Browse the repository at this point in the history
reference Quill CSS theme using BaseUrl so that it works in .NET MAUI as well as web
  • Loading branch information
sbwalker authored Nov 25, 2024
2 parents 871b0a2 + 844778d commit f5cc613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Oqtane.Client/Modules/Controls/QuillJSTextEditor.razor
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f5cc613

Please sign in to comment.