Skip to content

Commit 56a2d51

Browse files
committedApr 14, 2022
Aligned naming
1 parent 405478e commit 56a2d51

File tree

1 file changed

+2
-2
lines changed
  • BlazorLoadingComponent/BlazorLoadingComponent/Shared

1 file changed

+2
-2
lines changed
 

‎BlazorLoadingComponent/BlazorLoadingComponent/Shared/Loading.razor

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</div>
1111
</div>
1212

13-
<div style="display: @DisplayClassChildComponent">
13+
<div style="display: @DisplayClassChildContent">
1414
<CascadingValue Value="@LoadingConfiguration">
1515
@ChildContent
1616
</CascadingValue>
@@ -23,7 +23,7 @@
2323
private LoadingConfiguration LoadingConfiguration { get; set; } = new();
2424

2525
private string DisplayClassLoading => LoadingConfiguration.IsLoading ? "initial" : "none";
26-
private string DisplayClassChildComponent => LoadingConfiguration.IsLoading ? "none" : "initial";
26+
private string DisplayClassChildContent => LoadingConfiguration.IsLoading ? "none" : "initial";
2727

2828
protected override void OnParametersSet()
2929
{

0 commit comments

Comments
 (0)