From 7284f07b0d450a8ec92bdc3aee5498a61aa9a8a4 Mon Sep 17 00:00:00 2001 From: Daniel Molina Date: Tue, 14 May 2013 11:26:43 +0200 Subject: [PATCH] bug #2003: Error if Volume Group Name is specified when creating a new ISCSi datastore --- src/sunstone/public/js/plugins/datastores-tab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sunstone/public/js/plugins/datastores-tab.js b/src/sunstone/public/js/plugins/datastores-tab.js index 84ef9e2ad5..827fd32807 100644 --- a/src/sunstone/public/js/plugins/datastores-tab.js +++ b/src/sunstone/public/js/plugins/datastores-tab.js @@ -938,7 +938,7 @@ function setupCreateDatastoreDialog(){ ds_obj.datastore.base_iqn = base_iqn; if (vg_name) - ds_obj.vg_name.bridge_list = vg_name; + ds_obj.datastore.vg_name = vg_name; Sunstone.runAction("Datastore.create",ds_obj);