|
334 | 334 | React.createElement("td", null, network.networkName),
|
335 | 335 | React.createElement("td", null, network.encap),
|
336 | 336 | React.createElement("td", null, network.subnet),
|
337 |
| - React.createElement("td", null, network.defaultGw) |
| 337 | + React.createElement("td", null, network.gateway) |
338 | 338 |
|
339 | 339 | )
|
340 | 340 | )
|
|
370 | 370 | React.createElement(Input, {type: "text", label: "Tenant Name", ref: "tenantName", defaultValue: obj.tenantName, placeholder: "Tenant Name"}),
|
371 | 371 | React.createElement(Input, {type: "text", label: "Network name", ref: "networkName", defaultValue: obj.networkName, placeholder: "Network name"}),
|
372 | 372 | React.createElement(Input, {type: "text", label: "Encapsulation", ref: "encap", defaultValue: obj.encap, placeholder: "Encapsulation"}),
|
373 |
| - React.createElement(Input, {type: "text", label: "Private network", ref: "isPrivate", defaultValue: obj.isPrivate, placeholder: "Private network"}), |
374 |
| - React.createElement(Input, {type: "text", label: "Public network", ref: "isPublic", defaultValue: obj.isPublic, placeholder: "Public network"}), |
375 | 373 | React.createElement(Input, {type: "text", label: "Subnet", ref: "subnet", defaultValue: obj.subnet, placeholder: "Subnet"}),
|
376 |
| - React.createElement(Input, {type: "text", label: "Gateway", ref: "defaultGw", defaultValue: obj.defaultGw, placeholder: "Gateway"}) |
| 374 | + React.createElement(Input, {type: "text", label: "Gateway", ref: "defaultGw", defaultValue: obj.gateway, placeholder: "Gateway"}) |
377 | 375 | ),
|
378 | 376 | React.createElement("div", {className: "modal-footer"},
|
379 | 377 | React.createElement(Button, {onClick: this.props.onRequestHide}, "Close")
|
|
516 | 514 | if (rule.action == "deny") {
|
517 | 515 | action = "deny"
|
518 | 516 | }
|
519 |
| - return ( |
520 |
| - React.createElement(ModalTrigger, {modal: React.createElement(RuleModalView, {rule: rule })}, |
521 |
| - React.createElement("tr", {key: rule.key, className: "info"}, |
522 |
| - React.createElement("td", null, rule.ruleId), |
523 |
| - React.createElement("td", null, rule.priority), |
524 |
| - React.createElement("td", null, action ), |
525 |
| - React.createElement("td", null, rule.endpointGroup), |
526 |
| - React.createElement("td", null, rule.ipAddress), |
527 |
| - React.createElement("td", null, rule.protocol), |
528 |
| - React.createElement("td", null, rule.port) |
529 |
| - ) |
530 |
| - ) |
531 |
| - ); |
| 517 | + if (self.props.direction == "out") { |
| 518 | + return ( |
| 519 | + React.createElement(ModalTrigger, {modal: React.createElement(RuleModalView, {rule: rule })}, |
| 520 | + React.createElement("tr", {key: rule.key, className: "info"}, |
| 521 | + React.createElement("td", null, rule.ruleId), |
| 522 | + React.createElement("td", null, rule.priority), |
| 523 | + React.createElement("td", null, action ), |
| 524 | + React.createElement("td", null, rule.toEndpointGroup), |
| 525 | + React.createElement("td", null, rule.toIpAddress), |
| 526 | + React.createElement("td", null, rule.protocol), |
| 527 | + React.createElement("td", null, rule.port) |
| 528 | + ) |
| 529 | + ) |
| 530 | + ); |
| 531 | + } else { |
| 532 | + return ( |
| 533 | + React.createElement(ModalTrigger, {modal: React.createElement(RuleModalView, {rule: rule })}, |
| 534 | + React.createElement("tr", {key: rule.key, className: "info"}, |
| 535 | + React.createElement("td", null, rule.ruleId), |
| 536 | + React.createElement("td", null, rule.priority), |
| 537 | + React.createElement("td", null, action ), |
| 538 | + React.createElement("td", null, rule.fromEndpointGroup), |
| 539 | + React.createElement("td", null, rule.fromIpAddress), |
| 540 | + React.createElement("td", null, rule.protocol), |
| 541 | + React.createElement("td", null, rule.port) |
| 542 | + ) |
| 543 | + ) |
| 544 | + ); |
| 545 | + } |
| 546 | + |
532 | 547 | });
|
533 | 548 |
|
534 | 549 | // Set appropriate heading based on direction
|
|
0 commit comments