Skip to content

Commit d910c3c

Browse files
UI: fix update public IP ranges (#6177)
1 parent aab1e8a commit d910c3c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ui/src/views/infra/network/IpRangesTabPublic.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -257,19 +257,19 @@
257257

258258
>
259259
<a-form-item name="startip" ref="startip" :label="$t('label.startip')" class="form__item">
260-
<a-input v-focus="true" v-model:value="form.startip"></a-input>
260+
<a-input v-focus="true" v-model:value="formUpdRange.startip"></a-input>
261261
</a-form-item>
262262
<a-form-item name="endip" ref="endip" :label="$t('label.endip')" class="form__item">
263-
<a-input v-model:value="form.endip"></a-input>
263+
<a-input v-model:value="formUpdRange.endip"></a-input>
264264
</a-form-item>
265265
<a-form-item name="gateway" ref="gateway" :label="$t('label.gateway')" class="form__item">
266-
<a-input v-model:value="form.gateway"></a-input>
266+
<a-input v-model:value="formUpdRange.gateway"></a-input>
267267
</a-form-item>
268268
<a-form-item name="netmask" ref="netmask" :label="$t('label.netmask')" class="form__item">
269-
<a-input v-model:value="form.netmask"></a-input>
269+
<a-input v-model:value="formUpdRange.netmask"></a-input>
270270
</a-form-item>
271271
<a-form-item name="forsystemvms" ref="forsystemvms" :label="$t('label.system.vms')" class="form__item">
272-
<a-switch v-model:checked="form.forsystemvms"></a-switch>
272+
<a-switch v-model:checked="formUpdRange.forsystemvms"></a-switch>
273273
</a-form-item>
274274

275275
<div :span="24" class="action-button">

0 commit comments

Comments
 (0)