tnx-shared 5.1.647 → 5.1.648
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/bundles/tnx-shared.umd.js +6 -2
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/components/common-app-component/app-topbar-v1/app-topbar-v1.component.d.ts.map +1 -1
- package/esm2015/components/common-app-component/app-topbar-v1/app-topbar-v1.component.js +7 -3
- package/fesm2015/tnx-shared.js +6 -2
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
|
@@ -51365,11 +51365,15 @@
|
|
|
51365
51365
|
if (item.url == item.defaultRedirect) {
|
|
51366
51366
|
item.url = '/' + item.code.toLowerCase();
|
|
51367
51367
|
}
|
|
51368
|
+
var defaultPath = item.defaultRedirect;
|
|
51369
|
+
if (redirectType != null && redirectType == UserRedirectType$1.PERSONAL_INFO) {
|
|
51370
|
+
defaultPath = item.userProfileUrl;
|
|
51371
|
+
}
|
|
51368
51372
|
if (!this.openNewTab) {
|
|
51369
|
-
top.location.href = item.url + "/" +
|
|
51373
|
+
top.location.href = item.url + "/" + defaultPath;
|
|
51370
51374
|
}
|
|
51371
51375
|
else {
|
|
51372
|
-
window.open(item.url + "/" +
|
|
51376
|
+
window.open(item.url + "/" + defaultPath, '_blank');
|
|
51373
51377
|
}
|
|
51374
51378
|
}
|
|
51375
51379
|
else {
|