8 lines
485 B
HTML
8 lines
485 B
HTML
<div id="wrapper-{{index}}" class="wrapper">
|
|
<textarea id="input-{{index}}" class="input" (change)="update()" placeholder="Please enter your input ..."
|
|
[(ngModel)]="conversion.content">{{conversion.content}}</textarea>
|
|
<select id="type-{{index}}" class="conversion" (change)="convert($event)">
|
|
<option id="-1">Select conversion ...</option>
|
|
<option *ngFor="let c of conversions" id="{{c}}">Type {{ConversionType[c]}}</option>
|
|
</select>
|
|
</div>
|