Also returning skills with profile inquiries now, though that particular query is failing (current WIP) #2
15 lines
212 B
Plaintext
15 lines
212 B
Plaintext
@page "/profile/view/{Id}"
|
|
@inject HttpClient http
|
|
@inject AppState state
|
|
|
|
@if (IsLoading)
|
|
{
|
|
<p>Loading profile...</p>
|
|
}
|
|
else
|
|
{
|
|
<ErrorList Errors=@ErrorMessages>
|
|
<h3>View Profile</h3>
|
|
|
|
</ErrorList>
|
|
} |