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.
@@ -3274,7 +3274,14 @@ var MultiTabComponent = /** @class */ (function () {
3274
3274
  */
3275
3275
  function (url, title) {
3276
3276
  if (this.tabList.length >= this.maxTabs) {
3277
- this.closeTab(1); // 删除第二个,第一个固定
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") ||