@ronin/compiler 0.17.21-leo-pagination-bug-experimental-427 → 0.17.21-leo-pagination-bug-experimental-429
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/dist/index.js +3 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2346,12 +2346,10 @@ var Transaction = class {
|
|
2346
2346
|
);
|
2347
2347
|
}
|
2348
2348
|
}
|
2349
|
-
const
|
2350
|
-
|
2349
|
+
for (const field of selectedFields) {
|
2350
|
+
if (!field.excluded) continue;
|
2351
2351
|
for (const record of result.records) {
|
2352
|
-
|
2353
|
-
deleteProperty(record, field.slug);
|
2354
|
-
}
|
2352
|
+
deleteProperty(record, field.slug);
|
2355
2353
|
}
|
2356
2354
|
}
|
2357
2355
|
return result;
|
package/package.json
CHANGED