@if (SelectedCellDetail is null) {

Choose a cell to see its roll band, severity, and readable result without leaving the grid.

} else { var cell = SelectedCellDetail;

Roll band

@cell.RollBand

Severity

@cell.ColumnLabel
@if (!string.IsNullOrWhiteSpace(cell.GroupLabel)) {

Variant

@cell.GroupLabel
}

Status

@(cell.IsCurated ? "Curated" : "Needs Curation")
@if (!cell.IsCurated) { }
} @code { [Parameter] public CriticalTableCellDetail? SelectedCellDetail { get; set; } [Parameter] public EventCallback OnEdit { get; set; } [Parameter] public EventCallback OnCurate { get; set; } }