Don't pass step variable, it is not necessary

This commit is contained in:
Manuel Friedli 2018-09-06 14:45:17 +02:00
parent 171691f7f7
commit 635b84fbd7
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
<div [ngClass]="{selectwrapper: true, error: step.error}">
<div class="arrow_box">
<select class="select" (change)="convert(step, $event)">
<select class="select" (change)="convert($event)">
<option id="undefined">Select conversion ...</option>
<option class="option" *ngFor="let c of converters" id="{{c.getId()}}">{{c.getDisplayname()}}
</option>