impaktapps-ui-builder 0.0.101-alpha.120 → 0.0.101-alpha.121

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impaktapps-ui-builder",
3
- "version": "0.0.101-alpha.120",
3
+ "version": "0.0.101-alpha.121",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "tsc && vite build",
@@ -96,7 +96,7 @@ export default (funcParams: funcParamsProps) => {
96
96
  funcParams.store.navigate(
97
97
  `${funcParams.store.location.pathname}/${programId}`
98
98
  );
99
- } else if(pathParts[2] !== programId) {
99
+ } else if(pathParts[2] !== programId+"") {
100
100
  pathParts[2] = programId;
101
101
  const newPath = pathParts.slice(0, 3).join("/") + "/";
102
102
  funcParams.store.navigate(newPath);