mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-5612: UI > Network > Guest Networks > detailView > to distinguish between non-vpc network and vpc network(tier) easier, move VPC ID field up.
This commit is contained in:
parent
3da5de545e
commit
2868f36dbd
|
|
@ -1151,6 +1151,16 @@
|
|||
label: 'label.state'
|
||||
},
|
||||
|
||||
vpcid: {
|
||||
label: 'label.vpc.id',
|
||||
converter: function(args) {
|
||||
if (args != null)
|
||||
return args;
|
||||
else
|
||||
return 'N/A';
|
||||
}
|
||||
},
|
||||
|
||||
ispersistent: {
|
||||
label: 'Persistent ',
|
||||
converter: cloudStack.converters.toBooleanText
|
||||
|
|
@ -1260,16 +1270,6 @@
|
|||
},
|
||||
account: {
|
||||
label: 'label.account'
|
||||
},
|
||||
|
||||
vpcid: {
|
||||
label: 'label.vpc.id',
|
||||
converter: function(args) {
|
||||
if (args != null)
|
||||
return args;
|
||||
else
|
||||
return 'N/A';
|
||||
}
|
||||
}
|
||||
}],
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue