All files / src/app/components/event event.component.html

85% Statements 17/20
75% Branches 3/4
100% Functions 0/0
80% Lines 8/10

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  97x   187x 187x 187x 93x 93x   1x   194x          
 
@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>
}