mirror of https://github.com/apache/cloudstack.git
cloudstack 3.0 UI - Guest Network section - detailView - add VPC ID field.
This commit is contained in:
parent
81e7c819dc
commit
a4f1ecff64
|
|
@ -801,7 +801,17 @@
|
|||
},
|
||||
|
||||
domain: { label: 'label.domain' },
|
||||
account: { label: 'label.account' }
|
||||
account: { label: 'label.account' },
|
||||
|
||||
vpcid: {
|
||||
label: 'VPC ID',
|
||||
converter: function(args) {
|
||||
if(args != null)
|
||||
return args;
|
||||
else
|
||||
return 'N/A';
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
dataProvider: function(args) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue