mirror of https://github.com/apache/cloudstack.git
bug 12058: cloudStack 3.0 new UI - system - zone listView - add public field.
This commit is contained in:
parent
0f0729d2a0
commit
8672d380a5
|
|
@ -1764,7 +1764,16 @@
|
|||
fields: {
|
||||
name: { label: 'Zone' },
|
||||
networktype: { label: 'Network Type' },
|
||||
allocationstate: { label: 'Allocation State' }
|
||||
allocationstate: { label: 'Allocation State' },
|
||||
domainid: {
|
||||
label: 'Public',
|
||||
converter: function(args) {
|
||||
if(args == null)
|
||||
return "Yes";
|
||||
else
|
||||
return "No";
|
||||
}
|
||||
}
|
||||
},
|
||||
actions: {
|
||||
add: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue