You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Browse filesBrowse the repository at this point in the historyBrowse files
Jessica Wang
committed
CLOUDSTACK-6624: UI > create network offering > cloudStack does NOT support specifyIpRanges for isolated network - fix a bug that wrongly sends "specifyIpRanges=true" to createNetworkOffering API.
Copy file name to clipboardExpand all lines: ui/scripts/configuration.js
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3092,8 +3092,7 @@
3092
3092
deleteinputData.specifyIpRanges;//if specifyIpRanges should be false, do not pass specifyIpRanges parameter to API call since we need to keep API call's size as small as possible (p.s. specifyIpRanges is defaulted as false at server-side)
3093
3093
3094
3094
if(inputData['specifyVlan']=='on'){//specifyVlan checkbox is checked
3095
-
inputData['specifyVlan']=true;
3096
-
inputData['specifyIpRanges']=true;
3095
+
inputData['specifyVlan']=true;
3097
3096
}else{//specifyVlan checkbox is unchecked
3098
3097
deleteinputData.specifyVlan;//if specifyVlan checkbox is unchecked, do not pass specifyVlan parameter to API call since we need to keep API call's size as small as possible (p.s. specifyVlan is defaulted as false at server-side)
0 commit comments