@esfaenza/extensions 15.2.13 → 15.2.14
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.
|
@@ -1192,7 +1192,7 @@ class ExportService {
|
|
|
1192
1192
|
var createdItems = items.map(t => {
|
|
1193
1193
|
let tmp = new type();
|
|
1194
1194
|
for (let property in t)
|
|
1195
|
-
[property] = t[property];
|
|
1195
|
+
tmp[property] = t[property];
|
|
1196
1196
|
return tmp;
|
|
1197
1197
|
});
|
|
1198
1198
|
let headers = genericHeaders ? this.setupForGenericExport(createdItems, genericHeaders) : this.setupForExport(createdItems, columnsFilter);
|