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
|
@@ -3274,7 +3274,14 @@ var MultiTabComponent = /** @class */ (function () {
|
|
|
3274
3274
|
*/
|
|
3275
3275
|
function (url, title) {
|
|
3276
3276
|
if (this.tabList.length >= this.maxTabs) {
|
|
3277
|
-
|
|
3277
|
+
/** @type {?} */
|
|
3278
|
+
var secondTab_1 = this.tabList[1];
|
|
3279
|
+
this.tabList = this.tabList.filter((/**
|
|
3280
|
+
* @param {?} ele
|
|
3281
|
+
* @return {?}
|
|
3282
|
+
*/
|
|
3283
|
+
function (ele) { return ele.url !== secondTab_1.url; }));
|
|
3284
|
+
this.clearCache(this.urlWithoutQuery(secondTab_1.url));
|
|
3278
3285
|
}
|
|
3279
3286
|
/** @type {?} */
|
|
3280
3287
|
var localPermissions = sessionStorage.getItem("permissions") ||
|