Convert db to EF Core; start on view page
Also returning skills with profile inquiries now, though that particular query is failing (current WIP) #2
This commit is contained in:
22
src/JobsJobsJobs/Client/Shared/ErrorList.razor
Normal file
22
src/JobsJobsJobs/Client/Shared/ErrorList.razor
Normal file
@@ -0,0 +1,22 @@
|
||||
@if (Errors.Count == 0)
|
||||
{
|
||||
@ChildContent
|
||||
}
|
||||
else
|
||||
{
|
||||
<p>The following error@(Errors.Count == 1 ? "" : "s") occurred:</p>
|
||||
<ul>
|
||||
@foreach (var msg in Errors)
|
||||
{
|
||||
<li>@msg</li>
|
||||
}
|
||||
</ul>
|
||||
}
|
||||
|
||||
@code {
|
||||
[Parameter]
|
||||
public IList<string> Errors { get; set; } = default!;
|
||||
|
||||
[Parameter]
|
||||
public RenderFragment ChildContent { get; set; } = default!;
|
||||
}
|
||||
Reference in New Issue
Block a user