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:
Jessica Wang 2013-12-23 10:55:10 -08:00
parent 3da5de545e
commit 2868f36dbd
1 changed files with 10 additions and 10 deletions

View File

@ -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';
}
}
}],