@nkhang1902/strapi-plugin-export-import-clsx 1.3.3 → 1.3.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nkhang1902/strapi-plugin-export-import-clsx",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"description": "A powerful Strapi plugin for exporting and importing data with Excel support and advanced filtering",
|
|
5
5
|
"main": "./strapi-server.js",
|
|
6
6
|
"scripts": {
|
|
@@ -278,8 +278,6 @@ module.exports = ({ strapi }) => ({
|
|
|
278
278
|
|
|
279
279
|
for (const [key, attr] of Object.entries(schema.attributes)) {
|
|
280
280
|
const value = data?.[key];
|
|
281
|
-
const fieldPath = `${path}.${key}`;
|
|
282
|
-
|
|
283
281
|
if (attr.type === 'component') {
|
|
284
282
|
cleaned[key] = attr.repeatable
|
|
285
283
|
? (value || []).map((v, i) =>
|