Release v1.2 (#11)

Co-authored-by: shyallegro <support@allegro.ai>
This commit is contained in:
shyallegro
2022-02-15 13:09:07 +02:00
committed by GitHub
parent b93f917c35
commit 0ecd85320a
1170 changed files with 27041 additions and 29766 deletions

View File

@@ -1,15 +1,15 @@
<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 *ngFor="let iteration of iterations; let first = first; trackBy:trackKey"
class="images-section" [class.dark-theme]="isDarkTheme" togglePosition="before" [expanded]="first">
<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"
*ngFor="let frame of iteration.events; trackBy:trackFrame"
[frame]="frame"
(imageError)="imageUrlError({frame: frame, experimentId: experimentId})"
(imageClicked)="imageClicked.emit({frame: frame, snippetKey: frame.key, frames: allIterationsEvents})">
(imageClicked)="imageClicked.emit({frame: frame, snippetKey: frame.key, frames: iterationEvents})">
</sm-debug-image-snippet>
</div>
</ng-template>