@foreach (var c in Comments)
{
}
@code {
[Parameter]
public InspectionRegister Register { get; set; }
List Comments { get; } = new();
string NewCommentText { get; set; } = "";
protected async override Task OnInitializedAsync()
{
await base.OnInitializedAsync();
Comments.Add(new()
{
Content = "test comment"
});
}
}