@page "/datainbox/{id:guid}" @using DiunaBI.UI.Shared.Services @using DiunaBI.Application.DTOModels @using MudBlazor @inject DataInboxService DataInboxService @inject NavigationManager NavigationManager Data Inbox Details Back to List @if (isLoading) { } else if (dataInbox == null) { Data Inbox item not found } else { Decoded Data @if (string.IsNullOrEmpty(decodedData)) { No data available } else if (hasDecodingError) { Error decoding Base64 data @dataInbox.Data } else { @decodedData } }