aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsai-neetha <sai-neetha.phulmali@highstreet-technologies.com>2023-10-09 20:38:29 +0200
committersai-neetha <sai-neetha.phulmali@highstreet-technologies.com>2023-10-09 20:39:01 +0200
commit70cc4c4295376e4af9cb9009a6ee5ddc389d61d9 (patch)
treec9cda826074db4860ab8cc558a479d60e3bfb422
parentd3fc33134c81901ae9582e3b66108639ab3a7e70 (diff)
SDNR UI Config app throws 400 error
ConfigurationApp throws 400 error Issue-ID: CCSDK-3942 Change-Id: Ia4bdeb1590f533e49c8a865f2bc75e135952f414 Signed-off-by: sai-neetha <sai-neetha.phulmali@highstreet-technologies.com>
-rw-r--r--sdnr/wt/odlux/apps/configurationApp/src/actions/deviceActions.ts2
-rw-r--r--sdnr/wt/odlux/framework/pom.xml2
-rw-r--r--sdnr/wt/odlux/odlux.properties2
3 files changed, 3 insertions, 3 deletions
diff --git a/sdnr/wt/odlux/apps/configurationApp/src/actions/deviceActions.ts b/sdnr/wt/odlux/apps/configurationApp/src/actions/deviceActions.ts
index d8ec4bfd9..187e9bccb 100644
--- a/sdnr/wt/odlux/apps/configurationApp/src/actions/deviceActions.ts
+++ b/sdnr/wt/odlux/apps/configurationApp/src/actions/deviceActions.ts
@@ -233,7 +233,7 @@ export const updateViewActionAsyncCreator = (vPath: string) => async (dispatch:
extractList = true;
} else {
// normal case & replaces unicode %2C if present
- dataPath += `/${property}${key ? `=${key.replace(/\%2C/g, ',').replace(/\//ig, '%2F')}` : ''}`;
+ dataPath += `/${property}${key ? `=${key.replace(/,/ig, '%2C').replace(/\//ig, '%2F')}` : ''}`;
// in case of the root element the required namespace will be added later,
// while extracting the data
diff --git a/sdnr/wt/odlux/framework/pom.xml b/sdnr/wt/odlux/framework/pom.xml
index 1146f5954..47f1f58ed 100644
--- a/sdnr/wt/odlux/framework/pom.xml
+++ b/sdnr/wt/odlux/framework/pom.xml
@@ -45,7 +45,7 @@
<properties>
<buildtime>${maven.build.timestamp}</buildtime>
<distversion>ONAP Frankfurt (Neon, mdsal ${odl.mdsal.version})</distversion>
- <buildno>190.d02fb971(23/08/31)</buildno>
+ <buildno>192.ff865e59(23/10/09)</buildno>
<odlux.version>ONAP SDN-R | ONF Wireless for ${distversion} - Build: ${buildtime} ${buildno} ${project.version}</odlux.version>
</properties>
diff --git a/sdnr/wt/odlux/odlux.properties b/sdnr/wt/odlux/odlux.properties
index b9b3ac338..6d8b8c1f8 100644
--- a/sdnr/wt/odlux/odlux.properties
+++ b/sdnr/wt/odlux/odlux.properties
@@ -1,5 +1,5 @@
odlux.framework.buildno=190.d02fb971(23/08/31)
-odlux.apps.configurationApp.buildno=189.430945bc(23/08/04)
+odlux.apps.configurationApp.buildno=192.ff865e59(23/10/09)
odlux.apps.connectApp.buildno=172.52348b7c(23/02/16)
odlux.apps.eventLogApp.buildno=172.52348b7c(23/02/16)
odlux.apps.faultApp.buildno=188.1b12eac8(23/06/30)