@using Indotalent.Features.Serilogs.Database @using MudBlazor Log Detail [#@Log.Id] Message @Log.Message @if (!string.IsNullOrEmpty(Log.Exception)) { Exception / Stack Trace
@Log.Exception
} Properties (JSON Context)
@Log.Properties
Close
@code { [CascadingParameter] IMudDialogInstance MudDialog { get; set; } = default!; [Parameter] public GetSerilogLogsByIdResponse Log { get; set; } = default!; private void Close() => MudDialog.Close(); }