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

88.23% Statements 15/17
100% Branches 2/2
100% Functions 0/0
100% Lines 7/7

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 11823x 1646x   1646x     1534x 1534x 1534x 5x  
<app-loader *ngIf="!signal && !error"></app-loader>
<app-error *ngIf="error" [error]="error"></app-error>
 
<div *ngIf="signal">
    <!-- <h1>Sensor {{signal.signal_id}}</h1> -->
    <!-- <div echarts [options]="options"  [loading]="isLoading" [merge]="updateOptions" class="signal-chart"></div> -->
    <app-signal-card [signalId]="signalId"></app-signal-card>
    <app-signals-graphs *ngIf="signal.data_type !== 'epoch'" [inputSignalIdsToPlot]="[signalId]" [showLegend]="true" [showSignals]="false"></app-signals-graphs>
    <app-signal-countdown *ngIf="signal.data_type === 'epoch'" [signalId]="signalId"></app-signal-countdown>
<div>