@snteam/amplify-angular-core 1.0.47 → 1.0.48

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.
@@ -5394,9 +5394,8 @@ return fields;
5394
5394
  let fieldOrder = 0;
5395
5395
  for (const field of fields) {
5396
5396
  const fieldData = field;
5397
- // Skip system fields and relationship fields
5398
- if (skipFields.includes(fieldData.name) ||
5399
- (fieldData.association && fieldData.association.connectionType)) {
5397
+ // Skip system fields only (include relationship fields)
5398
+ if (skipFields.includes(fieldData.name)) {
5400
5399
  continue;
5401
5400
  }
5402
5401
  const formViewField = {