Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 | 95x 183x 183x 183x 91x 91x 1x 190x |
<div *ngIf="event!==undefined">
<h1 class="title">{{event.name}}</h1>
<h2 class="subtitle is-5">event #{{event.id.slice(16)}}</h2>
<p>occurred on {{event.timestamp*1000 | date:'full'}}</p>
<app-signals-graphs [inputSignalIdsToPlot]="signalIds" [inputZoomTime]="eventDate" [inputIsLive]="false" [showLegend]="true" [showSignals]="false"
[displayCommandCenter]="false"
></app-signals-graphs>
</div>
<div *ngIf="error!==undefined">
<p>No such event</p>
</div>
|