From 4f72cb65520e7e190612ce270c99af7eda4cd67b Mon Sep 17 00:00:00 2001 From: Gabriel Date: Wed, 17 Apr 2024 15:18:41 -0300 Subject: [PATCH] fix null host tags while creating zone --- ui/src/views/infra/zone/ZoneWizardLaunchZone.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/views/infra/zone/ZoneWizardLaunchZone.vue b/ui/src/views/infra/zone/ZoneWizardLaunchZone.vue index 5995d23129f5..4c40dfef2ed8 100644 --- a/ui/src/views/infra/zone/ZoneWizardLaunchZone.vue +++ b/ui/src/views/infra/zone/ZoneWizardLaunchZone.vue @@ -1358,7 +1358,7 @@ export default { hostData.clusterid = this.stepData.clusterReturned.id hostData.hypervisor = this.stepData.clusterReturned.hypervisortype hostData.clustertype = this.stepData.clusterReturned.clustertype - hostData.hosttags = this.prefillContent?.hostTags || null + hostData.hosttags = this.prefillContent?.hostTags || '' hostData.username = this.prefillContent?.hostUserName || null hostData.password = hostPassword const hostname = this.prefillContent?.hostName || null