nuxeo-development-framework 3.0.6 → 3.0.7
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 +4 -1
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/shared-services/mainfolder.service.js +5 -3
- package/fesm2015/nuxeo-development-framework.js +3 -1
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/package.json +1 -1
|
@@ -20976,10 +20976,13 @@
|
|
|
20976
20976
|
|
|
20977
20977
|
var MainfolderService = /** @class */ (function () {
|
|
20978
20978
|
function MainfolderService(nuxeoService, appConfigService, userPreference) {
|
|
20979
|
+
var _this = this;
|
|
20979
20980
|
this.nuxeoService = nuxeoService;
|
|
20980
20981
|
this.appConfigService = appConfigService;
|
|
20981
20982
|
this.userPreference = userPreference;
|
|
20982
|
-
this.
|
|
20983
|
+
this.appConfigService.configLoaded.pipe(operators.take(1)).subscribe(function (res) {
|
|
20984
|
+
_this.localStoragKeys = _this.appConfigService.myConfiguration.localStorageKey;
|
|
20985
|
+
});
|
|
20983
20986
|
}
|
|
20984
20987
|
MainfolderService.prototype.fetchfileManager_mainFolderId = function (apiName) {
|
|
20985
20988
|
return rxjs.from(this.nuxeoService.nuxeoClient
|