Skip to content

Commit

Permalink
GridDetailView / EmptyDataTemplate / LoadingTemplate not showing - fi…
Browse files Browse the repository at this point in the history
…xed.
  • Loading branch information
gvreddy04 committed Oct 31, 2024
1 parent a9d1263 commit dca8837
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion blazorbootstrap/Components/Grid/GridDetailView.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ protected override async Task OnInitializedAsync()
builder.AddContent(100, ChildContent, rowData);
};

[CascadingParameter]
[CascadingParameter(Name = "Parent")]
public Grid<TItem> Parent { get; set; } = default!;
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ protected override async Task OnInitializedAsync()
builder.AddContent(100, ChildContent);
};

[CascadingParameter]
[CascadingParameter(Name = "Parent")]
public Grid<TItem> Parent { get; set; } = default!;
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ protected override async Task OnInitializedAsync()
builder.AddContent(100, ChildContent);
};

[CascadingParameter]
[CascadingParameter(Name = "Parent")]
public Grid<TItem> Parent { get; set; } = default!;
}

0 comments on commit dca8837

Please sign in to comment.