mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
<MudDialog>
|
|
<DialogContent>
|
|
<MudGrid>
|
|
@if (Exception is null)
|
|
{
|
|
<MudItem xs="12">
|
|
<MudAlert Severity="Severity.Error">
|
|
Missing error information.
|
|
</MudAlert>
|
|
</MudItem>
|
|
}
|
|
else
|
|
{
|
|
<MudItem xs="12">
|
|
<MudField Label="Message">@Exception.Message</MudField>
|
|
</MudItem>
|
|
<MudItem xs="12">
|
|
<MudField Label="Source">@Exception.Source</MudField>
|
|
</MudItem>
|
|
<MudItem xs="12">
|
|
<MudField Label="Stack Trace">
|
|
<pre class="overflow">
|
|
@Exception.StackTrace
|
|
</pre>
|
|
</MudField>
|
|
</MudItem>
|
|
}
|
|
</MudGrid>
|
|
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="Close">Close</MudButton>
|
|
</DialogActions>
|
|
</MudDialog> |