mirror of https://github.com/apache/cloudstack.git
CS-16007: Show tier name (associated network name) in place of VM name
reviewed-by: jessica
This commit is contained in:
parent
3f8d9f6b1f
commit
93834ea6c6
|
|
@ -533,7 +533,16 @@
|
|||
},
|
||||
ipAddresses: {
|
||||
listView: function() {
|
||||
return cloudStack.sections.network.sections.ipAddresses;
|
||||
var listView = $.extend(true, {}, cloudStack.sections.network.sections.ipAddresses);
|
||||
|
||||
listView.listView.fields = {
|
||||
ipaddress: listView.listView.fields.ipaddress,
|
||||
zonename: listView.listView.fields.zonename,
|
||||
associatednetworkname: { label: 'label.network.name' },
|
||||
state: listView.listView.fields.state
|
||||
};
|
||||
|
||||
return listView;
|
||||
}
|
||||
},
|
||||
acl: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue