mirror of https://github.com/apache/cloudstack.git
CS-16007: Show tier name (associated network name) in place of field name
reviewed-by: jessica
This commit is contained in:
parent
1a88198d03
commit
7b46c2c8bc
|
|
@ -527,7 +527,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