mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-2944: Fix typo in addIpToNic dialog
This commit is contained in:
parent
86aafa2db6
commit
6007da198c
|
|
@ -1703,7 +1703,7 @@
|
|||
title: 'label.acquire.new.secondary.ip',
|
||||
desc: 'message.acquire.ip.nic',
|
||||
fields: {
|
||||
ipaddr: {
|
||||
ipaddress: {
|
||||
label: 'label.ip.address'
|
||||
}
|
||||
}
|
||||
|
|
@ -1718,8 +1718,8 @@
|
|||
nicId: args.context.nics[0].id
|
||||
};
|
||||
|
||||
if (args.data.ipaddr) {
|
||||
dataObj.ipaddr = args.data.ipaddr;
|
||||
if (args.data.ipaddress) {
|
||||
dataObj.ipaddress = args.data.ipaddress;
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
|
|
|
|||
Loading…
Reference in New Issue