raise-common-lib 0.0.50 → 0.0.51

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.
@@ -1984,7 +1984,9 @@ var MultiTabComponent = /** @class */ (function () {
1984
1984
  if (_this.noGenerateTabUrls.includes(_this.router.url)) {
1985
1985
  return; // 排除不生成tab的url
1986
1986
  }
1987
- _this.setTab(_this.router.url, currentRoute.snapshot.routeConfig.path, title);
1987
+ /** @type {?} */
1988
+ var urlWithoutQuery = _this.router.url.split('?')[0];
1989
+ _this.setTab(urlWithoutQuery, currentRoute.snapshot.routeConfig.path, title);
1988
1990
  }
1989
1991
  }
1990
1992
  })));