mirror of https://github.com/apache/cloudstack.git
CS-16018: cloudstack 3.0 UI - create VPN Customer Gateway - IKE DH, Perfect Forward Secrecy dropdown - restore blank option back and label it as "None".
This commit is contained in:
parent
44fd5108f3
commit
f6cf2fb0f0
|
|
@ -4073,7 +4073,7 @@
|
|||
label: 'IKE DH',
|
||||
select: function(args) {
|
||||
var items = [];
|
||||
// items.push({id: '', description: ''});
|
||||
items.push({id: '', description: 'None'});
|
||||
items.push({id: 'modp1024', description: 'Group 2(modp1024)'});
|
||||
items.push({id: 'modp1536', description: 'Group 5(modp1536)'});
|
||||
args.response.success({data: items});
|
||||
|
|
@ -4105,7 +4105,7 @@
|
|||
label: 'Perfect Forward Secrecy',
|
||||
select: function(args) {
|
||||
var items = [];
|
||||
// items.push({id: '', description: ''});
|
||||
items.push({id: '', description: 'None'});
|
||||
items.push({id: 'modp1024', description: 'Group 2(modp1024)'});
|
||||
items.push({id: 'modp1536', description: 'Group 5(modp1536)'});
|
||||
args.response.success({data: items});
|
||||
|
|
@ -4329,7 +4329,7 @@
|
|||
isEditable: true,
|
||||
select: function(args) {
|
||||
var items = [];
|
||||
items.push({id: '', description: ''});
|
||||
items.push({id: '', description: 'None'});
|
||||
items.push({id: 'modp1024', description: 'Group 2(modp1024)'});
|
||||
items.push({id: 'modp1536', description: 'Group 5(modp1536)'});
|
||||
args.response.success({data: items});
|
||||
|
|
@ -4364,7 +4364,7 @@
|
|||
isEditable: true,
|
||||
select: function(args) {
|
||||
var items = [];
|
||||
items.push({id: '', description: ''});
|
||||
items.push({id: '', description: 'None'});
|
||||
items.push({id: 'modp1024', description: 'Group 2(modp1024)'});
|
||||
items.push({id: 'modp1536', description: 'Group 5(modp1536)'});
|
||||
args.response.success({data: items});
|
||||
|
|
|
|||
Loading…
Reference in New Issue