Skip to content

Commit 5faaa16

Browse files
Make JSModule protected (#4395)
Co-authored-by: Denis Voituron <[email protected]>
1 parent bf2ca6a commit 5faaa16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Core/Components/Base/FluentComponentBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ protected FluentComponentBase(LibraryConfiguration configuration)
4141
/// Gets the JavaScript module imported with the <see cref="FluentJSModule.ImportJavaScriptModuleAsync"/> method.
4242
/// You need to call this method (in the `OnAfterRenderAsync` method) before using the module.
4343
/// </summary>
44-
internal FluentJSModule JSModule => _jsModule ??= new FluentJSModule(JSRuntime);
44+
protected FluentJSModule JSModule => _jsModule ??= new FluentJSModule(JSRuntime);
4545

4646
/// <summary>
4747
/// Gets the class builder, containing the default margin and padding values.

0 commit comments

Comments
 (0)