Skip to content

Commit

Permalink
fix null host tags while creating zone (#8976)
Browse files Browse the repository at this point in the history
Co-authored-by: Gabriel <[email protected]>
  • Loading branch information
GaOrtiga and Gabriel authored Jun 10, 2024
1 parent 21d0713 commit ee39104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/views/infra/zone/ZoneWizardLaunchZone.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ee39104

Please sign in to comment.