All files / app/component/select-plugin select-plugin.component.html

14.28% Statements 2/14
25% Branches 1/4
0% Functions 0/1
25% Lines 2/8

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 1240x         14x            
@if (plugins.length) {
  <select #select
          [id]="id"
          class="big"
          (input)="pluginChange.next(select.value)">
    <option value="" i18n>��️</option>
    @for (p of plugins; track p.tag) {
      <option [value]="p.tag">{{ p.name || '#' + p.tag }}</option>
    }
  </select>
}