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

84.21% Statements 16/19
100% Branches 0/0
100% Functions 0/0
77.77% Lines 7/9

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  146x 261x 261x 261x 130x     1x 292x      
 
<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]="true"
 
    ></app-signals-graphs>
</div>
<div *ngIf="error!==undefined">
    <p>No such event</p>
</div>