Fix a bug: zoneWizard uses incorrect vlan parameter to create storage network
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/aebf0333 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/aebf0333 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/aebf0333 Branch: refs/heads/4.0 Commit: aebf033358551551870b0f02cacdb210adf04735 Parents: 790f82b Author: Mice Xia <[email protected]> Authored: Tue Aug 14 13:42:40 2012 +0800 Committer: Alex Huang <[email protected]> Committed: Wed Aug 15 14:03:43 2012 -0700 ---------------------------------------------------------------------- ui/scripts/ui-custom/zoneWizard.js | 2 +- ui/scripts/zoneWizard.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/aebf0333/ui/scripts/ui-custom/zoneWizard.js ---------------------------------------------------------------------- diff --git a/ui/scripts/ui-custom/zoneWizard.js b/ui/scripts/ui-custom/zoneWizard.js index 3f26cda..c1e8f7c 100644 --- a/ui/scripts/ui-custom/zoneWizard.js +++ b/ui/scripts/ui-custom/zoneWizard.js @@ -127,7 +127,7 @@ var fields = [ 'gateway', 'netmask', - 'vlanid', + 'vlan', 'startip', 'endip' ]; http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/aebf0333/ui/scripts/zoneWizard.js ---------------------------------------------------------------------- diff --git a/ui/scripts/zoneWizard.js b/ui/scripts/zoneWizard.js index c3a2b4e..79ef423 100644 --- a/ui/scripts/zoneWizard.js +++ b/ui/scripts/zoneWizard.js @@ -157,7 +157,7 @@ fields: { 'gateway': { edit: true, label: 'label.gateway' }, 'netmask': { edit: true, label: 'label.netmask' }, - 'vlanid': { edit: true, label: 'label.vlan', isOptional: true }, + 'vlan': { edit: true, label: 'label.vlan', isOptional: true }, 'startip': { edit: true, label: 'label.start.IP' }, 'endip': { edit: true, label: 'label.end.IP' }, 'add-rule': { label: 'label.add', addButton: true }
