All files / app/component/action/inline-select inline-select.component.html

31.25% Statements 5/16
50% Branches 1/2
0% Functions 0/2
36.36% Lines 4/11

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 151x 1x 1x 2x                      
<a class="fake-link" (click)="editing = !editing">
  <ng-content></ng-content>
</a>
@if (editing) {
  <span class="inline-select">
    <select #inlineSelect
            [value]="value"
            (change)="save(inlineSelect)">
      <ng-content select="option"></ng-content>
    </select>&nbsp;
  </span>
} @else if (acting) {
  <app-loading [inline]="true"></app-loading>
}