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

84.21% Statements 16/19
100% Branches 0/0
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  99x 187x 187x 187x 93x 93x   1x 198x      
 
<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>