@ -357,7 +357,6 @@ export class TableComponent implements AfterViewInit {
},
});
dialogRef.afterClosed().subscribe((selectedObject) => {
console.log(selectedObject);
if (selectedObject) {
row[column.propertyNameOfReferenceId] = selectedObject.id;
const newObjectFlattened = flatten(selectedObject);
@ -27,8 +27,8 @@ export class ContactInformationComponent implements OnInit {
possibleObjects: [],
nameToShowInSelection: (person) => person.firstName + ' ' + person.name,
propertyPrefixToOverwrite: 'person',
currentlySelectedObjectId: (timeFrame) => {
return timeFrame['cargoBike.id'];
currentlySelectedObjectId: (contactInformation) => {
return contactInformation['person.id'];
propertyNameOfReferenceId: 'personId',