Skip to content

Commit

Permalink
start adding ui changes for add in regards to vrf
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Nobrega committed Mar 18, 2019
1 parent 2bb8204 commit 762991e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,14 @@ <h4 class="modal-title">Add new flow route</h4>
</select>
</div>
</div>

<div class="form-group row" id="fg_vrf">
<label for="selectVrf" class="col-sm-2 col-form-label">VRF</label>
<div class="col-sm-3">
<select class="form-control" id="selectVrf">
<option>re</option>
<option>trcps</option>
</select>
</div>
</form>
</div>
<div class="modal-footer">
Expand Down
2 changes: 2 additions & 0 deletions ui/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,8 @@ function flowRouteAddNewConfigEventHandler(){
data.protocol = $('#selectProtocol').val();
}

data.vrf = $('#selectVrf').val();

data.action = $('#selectAddNewFlowAction').val();

if (data.action == 'community') {
Expand Down

0 comments on commit 762991e

Please sign in to comment.