We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 405478e commit 56a2d51Copy full SHA for 56a2d51
BlazorLoadingComponent/BlazorLoadingComponent/Shared/Loading.razor
@@ -10,7 +10,7 @@
10
</div>
11
12
13
-<div style="display: @DisplayClassChildComponent">
+<div style="display: @DisplayClassChildContent">
14
<CascadingValue Value="@LoadingConfiguration">
15
@ChildContent
16
</CascadingValue>
@@ -23,7 +23,7 @@
23
private LoadingConfiguration LoadingConfiguration { get; set; } = new();
24
25
private string DisplayClassLoading => LoadingConfiguration.IsLoading ? "initial" : "none";
26
- private string DisplayClassChildComponent => LoadingConfiguration.IsLoading ? "none" : "initial";
+ private string DisplayClassChildContent => LoadingConfiguration.IsLoading ? "none" : "initial";
27
28
protected override void OnParametersSet()
29
{
0 commit comments