initial OSS commit

This commit is contained in:
shyallegro
2020-06-04 18:07:14 +03:00
parent d7cddd3c3d
commit 9321428c26
1644 changed files with 87405 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
<mat-expansion-panel *ngFor="let iteration of iterations; let i = index; trackBy:trackKey"
class="images-section" 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 [frame]="frame"
*ngFor="let frame of iteration.events; let i = index; trackBy:trackFrame"
(imageError)="imageUrlError({frame: frame, experimentId: experimentId})"
(imageClicked)="imageClicked.emit({frame: frame, snippetKey: frame.key, frames: iteration.events})">
</sm-debug-image-snippet>
</div>
</ng-template>
</mat-expansion-panel>