Skip to content

Commit 4e9a442

Browse files
committed
change label from vcenter host to esxi host
1 parent 4be0fb0 commit 4e9a442

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/views/tools/SelectVmwareVcenter.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,15 +125,15 @@
125125
</div>
126126
<div
127127
v-if="selectedExistingVcenterId || (vcenterSelectedOption === 'new')">
128-
<a-form-item :label="$t('label.vcenter.host')" ref="host" name="host" v-if="hosts.length > 0">
128+
<a-form-item :label="$t('label.esx.host')" ref="host" name="host" v-if="hosts.length > 0">
129129
<a-select
130130
v-model:value="form.host"
131131
:loading="loading"
132132
optionFilterProp="label"
133133
:filterOption="(input, option) => {
134134
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
135135
}"
136-
:placeholder="$t('label.vcenter.host')"
136+
:placeholder="$t('label.esx.host')"
137137
@change="onSelectExistingVmwareHost">
138138
<a-select-option key="" label="">{{ }}</a-select-option>
139139
<a-select-option v-for="opt in hosts" :key="opt.name">

0 commit comments

Comments
 (0)