From 844778d36aed67a95d9977d680033eb41fbf5ef5 Mon Sep 17 00:00:00 2001 From: sbwalker Date: Mon, 25 Nov 2024 14:19:58 -0500 Subject: [PATCH] reference Quill CSS theme using BaseUrl so that it works in .NET MAUI as well as web --- Oqtane.Client/Modules/Controls/QuillJSTextEditor.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Client/Modules/Controls/QuillJSTextEditor.razor b/Oqtane.Client/Modules/Controls/QuillJSTextEditor.razor index d6542a08..cc458f02 100644 --- a/Oqtane.Client/Modules/Controls/QuillJSTextEditor.razor +++ b/Oqtane.Client/Modules/Controls/QuillJSTextEditor.razor @@ -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);