@if (loading$ | async) {
Loading records…
}
@if (groups$ | async; as groups) {
@if (groups.length === 0 && !(loading$ | async)) {
inbox
No historical records found.
Please verify your Edge Server connection if this is unexpected.
}
@if (groups.length > 0) {
@for (group of groups; track group.batchId) {
@if (group.isExpanded) {
@for (item of group.items; track item.archive_id) {
@if (item.imageDataUrl) {
} @else {
}
{{ item.total_count ?? 0 }} detections
{{ item.inference_ms | number:'1.0-0' }} ms
}
}
}
}
}