Skip to content

Commit 0a4f163

Browse files
committed
comments
1 parent 4e9a442 commit 0a4f163

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ui/public/locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3006,7 +3006,7 @@
30063006
"message.license.agreements.not.accepted": "License agreements not accepted.",
30073007
"message.linstor.resourcegroup.description": "Linstor resource group to use for primary storage.",
30083008
"message.list.zone.vmware.datacenter.empty": "No VMware Datacenter exists in the selected Zone",
3009-
"message.list.zone.vmware.hosts.empty": "No VMware hosts were found in the selected Datacenter",
3009+
"message.list.zone.vmware.hosts.empty": "No EXSi hosts were found in the selected Datacenter.\nAre the credentials complete?\n",
30103010
"message.listnsp.not.return.providerid": "error: listNetworkServiceProviders API doesn't return VirtualRouter provider ID.",
30113011
"message.load.host.failed": "Failed to load hosts.",
30123012
"message.loadbalancer.stickypolicy.configuration": "Customize the load balancer stickiness policy:",

ui/src/views/tools/SelectVmwareVcenter.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ export default {
284284
this.loading = false
285285
})
286286
},
287-
listZoneVmwareDcHosts (doNotify) {
287+
loadZoneVmwareDcHosts (doNotify) {
288288
this.loading = true
289289
const params = {}
290290
if (this.vcenterSelectedOption === 'new') {
@@ -312,11 +312,11 @@ export default {
312312
},
313313
onSelectExistingVmwareDatacenter (value) {
314314
this.selectedExistingVcenterId = value
315-
this.listZoneVmwareDcHosts(true)
315+
this.loadZoneVmwareDcHosts(true)
316316
},
317317
onSelectExternalVmwareDatacenter (value) {
318318
if (this.vcenterSelectedOption === 'new' && !(this.vcenter === '' || this.datacentername === '' || this.username === '' || this.password === '')) {
319-
this.listZoneVmwareDcHosts(false)
319+
this.loadZoneVmwareDcHosts(false)
320320
}
321321
},
322322
onSelectExistingVmwareHost (value) {

0 commit comments

Comments
 (0)