@using RobotNet.VDA5050.State Maps @if (State?.Maps != null && State.Maps.Length > 0) { Map ID Map Description @context.MapId @(context.MapDescription ?? "N/A") } else { No maps available } @code { public StateMsg? State { get; set; } public void Update(StateMsg? state) { State = state; StateHasChanged(); } }