Release v1.6 (#31)

This commit is contained in:
shyallegro
2022-07-10 14:10:46 +03:00
committed by GitHub
parent c7c4e73645
commit b96f723af1
339 changed files with 9471 additions and 7768 deletions

View File

@@ -1,6 +1,6 @@
<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-expansion-panel-header class="debug-header" [collapsedHeight]="null" *ngIf="!isDatasetVersionPreview">
<mat-panel-title> {{iteration.iter}}</mat-panel-title>
</mat-expansion-panel-header>
<ng-template matExpansionPanelContent>
@@ -8,6 +8,7 @@
<sm-debug-image-snippet
*ngFor="let frame of iteration.events; trackBy:trackFrame"
[frame]="frame"
[theme]="isDarkTheme? themeEnum.Dark: themeEnum.Light"
(imageError)="imageUrlError({frame, experimentId})"
(imageClicked)="imageClicked.emit({frame})">
</sm-debug-image-snippet>