Skip to content

Commit bb6009e

Browse files
committed
updating modelgen
1 parent 0ceb02b commit bb6009e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

client/contivModel.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ var BgpModalView = React.createClass({
248248

249249
<Input type='text' label='AS id' ref='neighbor-as' defaultValue={obj.neighbor-as} placeholder='AS id' />
250250

251-
<Input type='text' label='Bgp neighbor' ref='routerip' defaultValue={obj.routerip} placeholder='Bgp neighbor' />
251+
<Input type='text' label='Bgp router intf ip' ref='routerip' defaultValue={obj.routerip} placeholder='Bgp router intf ip' />
252252

253253
</div>
254254
<div className='modal-footer'>

client/contivModelClient.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ type Bgp struct {
182182
Hostname string `json:"hostname,omitempty"` // host name
183183
Neighbor string `json:"neighbor,omitempty"` // Bgp neighbor
184184
NeighborAs string `json:"neighbor-as,omitempty"` // AS id
185-
Routerip string `json:"routerip,omitempty"` // Bgp neighbor
185+
Routerip string `json:"routerip,omitempty"` // Bgp router intf ip
186186

187187
}
188188

contivModel.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ type Bgp struct {
7979
Hostname string `json:"hostname,omitempty"` // host name
8080
Neighbor string `json:"neighbor,omitempty"` // Bgp neighbor
8181
NeighborAs string `json:"neighbor-as,omitempty"` // AS id
82-
Routerip string `json:"routerip,omitempty"` // Bgp neighbor
82+
Routerip string `json:"routerip,omitempty"` // Bgp router intf ip
8383

8484
}
8585

host.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"routerip": {
1515
"type": "string",
16-
"title": "Bgp neighbor",
16+
"title": "Bgp router intf ip",
1717
"length": 15
1818
},
1919
"as": {

0 commit comments

Comments
 (0)