|
@@ -165,7 +165,7 @@ export class DynaformComponent implements OnInit {
|
|
|
// The primaryField has been specified, so return its value
|
|
|
const repeatingContainerFormArray = this.formGroup.get(repeatingContainerName) as FormArray;
|
|
|
const formGroup = repeatingContainerFormArray.at(index);
|
|
|
- return formGroup.get(primaryField).value;
|
|
|
+ return formGroup.get(primaryField).value || '…';
|
|
|
} else {
|
|
|
// Otherwise return the 'button' of the container (in the array of containers)
|
|
|
return rcMeta.meta[index].button;
|