mirror of https://github.com/apache/cloudstack.git
address comments
This commit is contained in:
parent
43dc7e117c
commit
b237f0cc2c
|
|
@ -302,7 +302,7 @@ public class CreateNetworkOfferingCmd extends BaseCmd {
|
|||
return nsxMode;
|
||||
}
|
||||
|
||||
public Boolean getNsxSupportsLbService() {
|
||||
public boolean getNsxSupportsLbService() {
|
||||
return BooleanUtils.isTrue(nsxSupportsLbService);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -179,7 +179,7 @@ public class CreateVPCOfferingCmd extends BaseAsyncCreateCmd {
|
|||
return nsxMode;
|
||||
}
|
||||
|
||||
public Boolean getNsxSupportsLbService() {
|
||||
public boolean getNsxSupportsLbService() {
|
||||
return org.apache.commons.lang3.BooleanUtils.isTrue(nsxSupportsLbService);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -76,7 +76,6 @@
|
|||
<a-switch v-model:checked="form.fornsx" @change="val => { handleForNsxChange(val) }" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<!-- <a-row :gutter="1" v-if="forNsx"> -->
|
||||
<a-col :md="12" :lg="12" v-if="forNsx">
|
||||
<a-form-item name="nsxsupportlb" ref="nsxsupportlb">
|
||||
<template #label>
|
||||
|
|
@ -85,7 +84,6 @@
|
|||
<a-switch v-model:checked="form.nsxsupportlb" @change="val => { handleNsxLbService(val) }" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<!-- </a-row> -->
|
||||
</a-row>
|
||||
<a-form-item name="nsxmode" ref="nsxmode" v-if="forNsx">
|
||||
<template #label>
|
||||
|
|
|
|||
Loading…
Reference in New Issue