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.
- package/bundles/nuxeo-development-framework.umd.js +3 -3
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +3 -3
- package/esm2015/lib/components/reports/charts/components/data-chart.component.js +2 -2
- package/esm2015/lib/components/spell-checker-field/spell-checker-field.module.js +1 -1
- package/fesm2015/nuxeo-development-framework.js +3 -3
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/package.json +1 -1
|
@@ -22263,10 +22263,10 @@
|
|
|
22263
22263
|
searchTerm: term
|
|
22264
22264
|
};
|
|
22265
22265
|
if (this.globalAdminService.isGlobalAdmin) {
|
|
22266
|
-
params['path'] =
|
|
22266
|
+
params['path'] = this.globalAdminService.activeTenant;
|
|
22267
22267
|
}
|
|
22268
22268
|
else if (!this.globalAdminService.isGlobalAdmin && this.nuxeoService.nuxeoClient.user.properties.tenantId) {
|
|
22269
|
-
params['path'] =
|
|
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.
|
|
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 () {
|