@ruiapp/rapid-core 0.1.48 → 0.1.49
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 -0
- package/package.json +1 -1
- package/src/dataAccess/entityMapper.ts +4 -0
package/dist/index.js
CHANGED
|
@@ -1858,6 +1858,9 @@ function mapDbRowToEntity(server, model, row, keepNonPropertyFields) {
|
|
|
1858
1858
|
propertyName = columnName;
|
|
1859
1859
|
}
|
|
1860
1860
|
}
|
|
1861
|
+
if (property?.config?.dataManage?.hidden) {
|
|
1862
|
+
return;
|
|
1863
|
+
}
|
|
1861
1864
|
if (isRelationProp) {
|
|
1862
1865
|
if (row[propertyName]) {
|
|
1863
1866
|
if (!result[propertyName]) {
|
package/package.json
CHANGED