Skip to content

Commit c249e25

Browse files
authored
ui: Fix create kubernetes cluster with ha enabled (#6416)
1 parent 8440b77 commit c249e25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/views/compute/CreateKubernetesCluster.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,15 +137,15 @@
137137
</template>
138138
<a-switch v-model:checked="form.haenable" />
139139
</a-form-item>
140-
<a-form-item v-if="form.haenable">
140+
<a-form-item v-if="form.haenable" name="controlnodes" ref="controlnodes">
141141
<template #label>
142142
<tooltip-label :title="$t('label.controlnodes')" :tooltip="apiParams.controlnodes.description"/>
143143
</template>
144144
<a-input
145145
v-model:value="form.controlnodes"
146146
:placeholder="apiParams.controlnodes.description"/>
147147
</a-form-item>
148-
<a-form-item v-if="form.haenable">
148+
<a-form-item v-if="form.haenable" name="externalloadbalanceripaddress" ref="externalloadbalanceripaddress">
149149
<template #label>
150150
<tooltip-label :title="$t('label.externalloadbalanceripaddress')" :tooltip="apiParams.externalloadbalanceripaddress.description"/>
151151
</template>

0 commit comments

Comments
 (0)