ui: Fix create kubernetes cluster with ha enabled (#6416)

This commit is contained in:
David Jumani 2022-05-30 17:59:26 +05:30 committed by GitHub
parent 8440b77ed9
commit c249e25d74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -137,7 +137,7 @@
</template>
<a-switch v-model:checked="form.haenable" />
</a-form-item>
<a-form-item v-if="form.haenable">
<a-form-item v-if="form.haenable" name="controlnodes" ref="controlnodes">
<template #label>
<tooltip-label :title="$t('label.controlnodes')" :tooltip="apiParams.controlnodes.description"/>
</template>
@ -145,7 +145,7 @@
v-model:value="form.controlnodes"
:placeholder="apiParams.controlnodes.description"/>
</a-form-item>
<a-form-item v-if="form.haenable">
<a-form-item v-if="form.haenable" name="externalloadbalanceripaddress" ref="externalloadbalanceripaddress">
<template #label>
<tooltip-label :title="$t('label.externalloadbalanceripaddress')" :tooltip="apiParams.externalloadbalanceripaddress.description"/>
</template>