From ee39104ec04548b259cee4e50b2dbce49ce64523 Mon Sep 17 00:00:00 2001 From: GaOrtiga <49285692+GaOrtiga@users.noreply.github.com> Date: Mon, 10 Jun 2024 08:03:42 -0300 Subject: [PATCH] fix null host tags while creating zone (#8976) Co-authored-by: Gabriel --- 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 5995d23129f..4c40dfef2ed 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