mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
9 lines
346 B
Plaintext
9 lines
346 B
Plaintext
<MudList T="string">
|
|
<MudListItem OnClick="ClearErrors">Clear Errors</MudListItem>
|
|
<MudListItem OnClick="ClearErrorsAndResumeAsync">Clear Errors and Resume</MudListItem>
|
|
<MudDivider />
|
|
@foreach (var error in Errors)
|
|
{
|
|
<MudListItem OnClick="@(e => ShowException(error))">@error.Message</MudListItem>
|
|
}
|
|
</MudList> |