This is an automated email from the ASF dual-hosted git repository.
rohit pushed a commit to branch 4.15
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.15 by this push:
new c24aee9 ui: fix error using value of ip6dns1 for ip6dns2 (#5253)
c24aee9 is described below
commit c24aee989fd26b260cfa0c03dc2273c9e59bebe5
Author: Hoang Nguyen <[email protected]>
AuthorDate: Fri Jul 30 12:22:02 2021 +0700
ui: fix error using value of ip6dns1 for ip6dns2 (#5253)
---
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 7191f19..d9a18e0 100644
--- a/ui/src/views/infra/zone/ZoneWizardLaunchZone.vue
+++ b/ui/src/views/infra/zone/ZoneWizardLaunchZone.vue
@@ -326,7 +326,7 @@ export default {
params.dns1 = this.prefillContent.ipv4Dns1.value
params.dns2 = this.prefillContent.ipv4Dns2 ?
this.prefillContent.ipv4Dns2.value : null
params.ip6dns1 = this.prefillContent.ipv6Dns1 ?
this.prefillContent.ipv6Dns1.value : null
- params.ip6dns2 = this.prefillContent.ipv6Dns1 ?
this.prefillContent.ipv6Dns1.value : null
+ params.ip6dns2 = this.prefillContent.ipv6Dns2 ?
this.prefillContent.ipv6Dns2.value : null
params.internaldns1 = this.prefillContent.internalDns1 ?
this.prefillContent.internalDns1.value : null
params.internaldns2 = this.prefillContent.internalDns2 ?
this.prefillContent.internalDns2.value : null
params.domain = this.prefillContent.networkDomain ?
this.prefillContent.networkDomain.value : null