All files / src/app/components/device-card-mini device-card-mini.component.html

100% Statements 11/11
100% Branches 0/0
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 11 12 13 14 1524x       51x 51x   3x   3x 51x     3x  
<div class="card" *ngIf="device">
    <div class="card-content">
      <div class="media">
        <div class="media-content">
          <p class="title is-4">{{device.name}}</p>
          <p class="subtitle is-6">device #{{device.device_id.slice(8)}}</p>
        </div>
      </div>
 
      <div class="content">
        {{device.description}}
      </div>
    </div>
</div>