raise-common-lib 0.0.133 → 0.0.134
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/raise-common-lib.umd.js +8 -1
- package/bundles/raise-common-lib.umd.js.map +1 -1
- package/bundles/raise-common-lib.umd.min.js +1 -1
- package/bundles/raise-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/layout/multi-tab/index.component.js +9 -2
- package/esm5/lib/layout/multi-tab/index.component.js +9 -2
- package/fesm2015/raise-common-lib.js +8 -1
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +8 -1
- package/fesm5/raise-common-lib.js.map +1 -1
- package/package.json +1 -1
|
@@ -3467,7 +3467,14 @@
|
|
|
3467
3467
|
*/
|
|
3468
3468
|
function (url, title) {
|
|
3469
3469
|
if (this.tabList.length >= this.maxTabs) {
|
|
3470
|
-
|
|
3470
|
+
/** @type {?} */
|
|
3471
|
+
var secondTab_1 = this.tabList[1];
|
|
3472
|
+
this.tabList = this.tabList.filter((/**
|
|
3473
|
+
* @param {?} ele
|
|
3474
|
+
* @return {?}
|
|
3475
|
+
*/
|
|
3476
|
+
function (ele) { return ele.url !== secondTab_1.url; }));
|
|
3477
|
+
this.clearCache(this.urlWithoutQuery(secondTab_1.url));
|
|
3471
3478
|
}
|
|
3472
3479
|
/** @type {?} */
|
|
3473
3480
|
var localPermissions = sessionStorage.getItem("permissions") ||
|