From 0f164f86cf5260028ed9b241c06a4ac243f77ca5 Mon Sep 17 00:00:00 2001 From: KIRAN KASHALKAR Date: Tue, 4 Oct 2016 09:36:17 -0700 Subject: [PATCH] RIFT-14793: Creating new Virtual Link in Viewport includes double quotes in ip profile ref name Signed-off-by: KIRAN KASHALKAR --- .../launchpad/src/virtual_links/nsVirtualLinkCreateStore.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skyquake/plugins/launchpad/src/virtual_links/nsVirtualLinkCreateStore.js b/skyquake/plugins/launchpad/src/virtual_links/nsVirtualLinkCreateStore.js index a3708feb5..61ebe3d86 100644 --- a/skyquake/plugins/launchpad/src/virtual_links/nsVirtualLinkCreateStore.js +++ b/skyquake/plugins/launchpad/src/virtual_links/nsVirtualLinkCreateStore.js @@ -172,7 +172,8 @@ class NSVirtualLinkCreateStore { let vld = _.cloneDeep(this.vld); this.vldInitParamsTypes.map((vldInitParamType) => { if (currentVLDInitParamsType == vldInitParamType) { - vld[currentVLDInitParamsType] = e.target.value; + let value = e.target.nodeName == "SELECT" ? JSON.parse(e.target.value) : e.target.value; + vld[currentVLDInitParamsType] = value; } else { vld[vldInitParamType] && delete vld[vldInitParamType]; } -- 2.17.1