impaktapps-ui-builder 0.0.101-alpha.127 → 0.0.101-alpha.129

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.
@@ -10302,10 +10302,12 @@ var service = (funcParams) => {
10302
10302
  const programId = ((_a = JSON.parse(window.sessionStorage.getItem("ProgramID") || "{}")) == null ? void 0 : _a.value) || "programID";
10303
10303
  const queryParams = funcParams.store.searchParam;
10304
10304
  console.log("queryParams ", queryParams);
10305
- funcParams.store.setSearchParams({ ...queryParams, ProgramID: programId });
10306
- funcParams.store.navigate(
10307
- 0
10308
- );
10305
+ if ((queryParams == null ? void 0 : queryParams.get("ProgramID")) !== programId) {
10306
+ funcParams.store.setSearchParams({ ...queryParams, ProgramID: programId });
10307
+ funcParams.store.navigate(
10308
+ 0
10309
+ );
10310
+ }
10309
10311
  const uiSchema = pageData == null ? void 0 : pageData.uiSchema;
10310
10312
  const event2 = new CustomEvent("pageNameChanged", {
10311
10313
  detail: { pageName: config2.label }