Files
clearml-web/src/app/webapp-common/debug-images/debug-images-view/debug-images-view.component.html
2021-07-26 13:20:15 +03:00

17 lines
884 B
HTML

<mat-expansion-panel *ngFor="let iteration of iterations; let i = index; trackBy:trackKey"
class="images-section" [class.dark-theme]="isDarkTheme" togglePosition="before" [expanded]="i===0">
<mat-expansion-panel-header class="debug-header" [collapsedHeight]="null">
<mat-panel-title> {{iteration.iter}}</mat-panel-title>
</mat-expansion-panel-header>
<ng-template matExpansionPanelContent>
<div class="d-flex justify-content flex-wrap">
<sm-debug-image-snippet
*ngFor="let frame of iteration.events; let i = index; trackBy:trackFrame"
[frame]="frame"
(imageError)="imageUrlError({frame: frame, experimentId: experimentId})"
(imageClicked)="imageClicked.emit({frame: frame, snippetKey: frame.key, frames: allIterationsEvents})">
</sm-debug-image-snippet>
</div>
</ng-template>
</mat-expansion-panel>