nuxeo-development-framework 5.3.5 → 5.3.6
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 +1 -1
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/tables/ndf-table/services/ndf-table-configuration.service.js +3 -2
- package/fesm2015/nuxeo-development-framework.js +1 -1
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/package.json +1 -1
|
@@ -20882,7 +20882,7 @@
|
|
|
20882
20882
|
NdfTableConfigurationService.prototype.getTableConfiguration = function (key, path) {
|
|
20883
20883
|
return rxjs.of(this.appConfigService.myConfiguration).pipe(operators.map(function (config) {
|
|
20884
20884
|
var base = path ? ___default["default"].get(config, path) : config;
|
|
20885
|
-
return ___default["default"].get(base, key);
|
|
20885
|
+
return _.cloneDeep(___default["default"].get(base, key));
|
|
20886
20886
|
}));
|
|
20887
20887
|
};
|
|
20888
20888
|
return NdfTableConfigurationService;
|