@ -69,7 +69,13 @@ export class ParticipantComponent implements OnInit {
dataPath: 'workshops',
dataService: null,
columnInfo: [
{ dataPath: 'title', translation: 'Workshopname' },
{
dataPath: 'title',
translation: 'Workshopname',
link: (element) => {
return '/workshop/' + element['id'];
},
{ dataPath: 'description', translation: 'Details' },
],
nameToShowInSelection: (workshop) => {
@ -21,7 +21,7 @@ export class ParticipantsComponent implements OnInit {
dataPath: 'contactInformation.person.name',
translation: 'Nachname',
link: (row: any) => {
return '/person/' + row['contactInformation.person.id'];
return '/participant/' + row['id'];
possibleObjects: [],
nameToShowInSelection: (contact) => {