Skip to content

Commit

Permalink
Set IP Range input selectable on Network during VCH Wizard creation (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
javierfz1980 authored May 11, 2018
1 parent 1f5e999 commit c77b3d9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -636,16 +636,16 @@
<input type="radio"
value="dhcp"
formControlName="containerNetworkType"
[attr.id]="'cont-dhcp-' + i">
<label [attr.for]="'cont-dhcp-' + i">DHCP</label>
[id]="'cont-dhcp-' + i">
<label [for]="'cont-dhcp-' + i">DHCP</label>
</div>

<div class="radio-inline">
<input type="radio"
value="static"
formControlName="containerNetworkType"
[attr.id]="'cont-static-' + i">
<label [attr.for]="'cont-static-' + i">IP Range</label>
[id]="'cont-static-' + i">
<label [for]="'cont-static-' + i">IP Range</label>
</div>

</div>
Expand Down

0 comments on commit c77b3d9

Please sign in to comment.