Skip to content

Commit

Permalink
Fix label/select references
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Feb 2, 2018
1 parent f25a0d0 commit 67b6792
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@
</div>

<div *ngIf="!isDeploymentArtifact">
<label class="control-label" for="key">Interface Name</label>
<select [(ngModel)]="selectedInterface" name="interfaces" class="form-control">
<label class="control-label" for="interfaces">Interface Name</label>
<select [(ngModel)]="selectedInterface" id="interfaces" name="interfaces" class="form-control">
<option *ngFor="let interfaceItem of interfacesList" [ngValue]="interfaceItem">{{interfaceItem.text}}</option>
</select>

<label class="control-label" for="key">Operations</label>
<select [(ngModel)]="selectedOperation" name="interfaces" class="form-control">
<label class="control-label" for="operations">Operations</label>
<select [(ngModel)]="selectedOperation" id="operations" name="operations" class="form-control">
<option *ngFor="let operation of selectedInterface?.operations" [ngValue]="operation">
{{operation}}
</option>
Expand Down

0 comments on commit 67b6792

Please sign in to comment.