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 14 15 16 17 | 119x 227x 227x 227x 113x 113x 1x 238x |
@if (event!==undefined) {
<div>
<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>
}
@if (error!==undefined) {
<div>
<p>No such event</p>
</div>
}
|