barsa-sap-ui 2.3.40 → 2.3.41

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.
@@ -7035,8 +7035,9 @@ class ReportNavigatorComponent extends BaseComponent {
7035
7035
  .pipe(takeUntil(this._onDestroy$), tap(() => this._setLoading(true)), map((params) => ({
7036
7036
  Id: params.id.split('__')[0],
7037
7037
  ReportId: params.id.split('__').length > 2 ? params.id.split('__')[2] : '',
7038
+ ReportId2: params.id.split('__').length > 1 ? params.id.split('__')[1] : '',
7038
7039
  isReportPage: params.id.split('__').length > 3 ? params.id.split('__')[3] : null
7039
- })), tap((c) => (c.isReportPage ? (this.minheight = 'auto') : '100vh')), tap((_c) => this.containerRef.clear()), tap((navItem) => this._applicationCtrlService.selectNavGroupItem(navItem.Id)), switchMap((navItem) => this._portalService
7040
+ })), tap((c) => (c.isReportPage ? (this.minheight = 'auto') : '100vh')), tap((_c) => this.containerRef.clear()), tap((navItem) => this._applicationCtrlService.selectNavGroupItem(navItem.Id)), tap((navItem) => this._applicationCtrlService.selectedReportId(navItem.ReportId || navItem.ReportId2)), switchMap((navItem) => this._portalService
7040
7041
  .renderUlvMainUi(navItem, this.containerRef, this._injector, navItem.isReportPage ? false : true)
7041
7042
  .pipe(catchError((_err) =>
7042
7043
  // this._location.back();
@@ -7050,7 +7051,7 @@ class ReportNavigatorComponent extends BaseComponent {
7050
7051
  }
7051
7052
  ngOnDestroy() {
7052
7053
  super.ngOnDestroy();
7053
- this._applicationCtrlService.selectNavGroupItem('');
7054
+ // this._applicationCtrlService.selectNavGroupItem('');
7054
7055
  this._setActiveReport(null);
7055
7056
  }
7056
7057
  _setLoading(val) {