impaktapps-ui-builder 0.0.101-alpha.230 → 0.0.101-alpha.232
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10300,9 +10300,9 @@ var service = (funcParams) => {
|
|
|
10300
10300
|
}
|
|
10301
10301
|
const config2 = pageData == null ? void 0 : pageData.config;
|
|
10302
10302
|
const programId = ((_a = JSON.parse(window.sessionStorage.getItem("ProgramID") || "{}")) == null ? void 0 : _a.value) || "programID";
|
|
10303
|
-
const queryParams =
|
|
10303
|
+
const queryParams = new URLSearchParams(location.search);
|
|
10304
10304
|
console.log("queryParams ", queryParams);
|
|
10305
|
-
if ((queryParams == null ? void 0 : queryParams.get("ProgramID")) !== programId) {
|
|
10305
|
+
if ((queryParams == null ? void 0 : queryParams.get("ProgramID")) !== programId + "") {
|
|
10306
10306
|
funcParams.store.setSearchParams({ ...queryParams, ProgramID: programId });
|
|
10307
10307
|
funcParams.store.navigate(
|
|
10308
10308
|
0
|