nuxeo-development-framework 5.3.2 → 5.3.3

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.
@@ -22263,10 +22263,10 @@
22263
22263
  searchTerm: term
22264
22264
  };
22265
22265
  if (this.globalAdminService.isGlobalAdmin) {
22266
- params['path'] = '/' + this.globalAdminService.activeTenant + '/';
22266
+ params['path'] = this.globalAdminService.activeTenant;
22267
22267
  }
22268
22268
  else if (!this.globalAdminService.isGlobalAdmin && this.nuxeoService.nuxeoClient.user.properties.tenantId) {
22269
- params['path'] = '/' + this.nuxeoService.nuxeoClient.user.properties.tenantId + '/';
22269
+ params['path'] = this.nuxeoService.nuxeoClient.user.properties.tenantId;
22270
22270
  }
22271
22271
  return rxjs.from(this.nuxeoService.nuxeoClient
22272
22272
  .operation(this.suggesterApi ? this.suggesterApi : 'Search.CustomSuggestersLauncher', {
@@ -42696,7 +42696,7 @@
42696
42696
  translatePrefix: this.translatePrefix,
42697
42697
  bindValue: this.bindValue
42698
42698
  });
42699
- this.chartData$ = this._rebuildTrigger$.pipe(operators.filter(Boolean), operators.switchMap(function (params) { return _this._preparedData(params); }));
42699
+ this.chartData$ = this._rebuildTrigger$.pipe(operators.switchMap(function (params) { return _this._preparedData(params); }));
42700
42700
  this._subscribeToLanguage();
42701
42701
  };
42702
42702
  DataChartComponent.prototype._subscribeToLanguage = function () {