From 4ac1156aa420715924e90b9291e047ede10b339b Mon Sep 17 00:00:00 2001 From: Max Ehrlicher-Schmidt Date: Wed, 16 Dec 2020 16:56:46 +0100 Subject: [PATCH] Make only one column sticky --- .../tables/contact-information/contact-information.component.ts | 1 - src/app/pages/tables/participants/participants.component.ts | 1 - src/app/pages/tables/providers/providers.component.ts | 1 + 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/pages/tables/contact-information/contact-information.component.ts b/src/app/pages/tables/contact-information/contact-information.component.ts index 4372d4a..f6bd851 100644 --- a/src/app/pages/tables/contact-information/contact-information.component.ts +++ b/src/app/pages/tables/contact-information/contact-information.component.ts @@ -20,7 +20,6 @@ export class ContactInformationComponent implements OnInit { { dataPath: 'person.name', translation: 'Nachname', - sticky: true, link: (row: any) => { return '/person/' + row['person.id']; }, diff --git a/src/app/pages/tables/participants/participants.component.ts b/src/app/pages/tables/participants/participants.component.ts index 6c8dce3..ec9e825 100644 --- a/src/app/pages/tables/participants/participants.component.ts +++ b/src/app/pages/tables/participants/participants.component.ts @@ -20,7 +20,6 @@ export class ParticipantsComponent implements OnInit { { dataPath: 'contactInformation.person.name', translation: 'Nachname', - sticky: true, link: (row: any) => { return '/person/' + row['contactInformation.person.id']; }, diff --git a/src/app/pages/tables/providers/providers.component.ts b/src/app/pages/tables/providers/providers.component.ts index f4c0372..ed3576d 100644 --- a/src/app/pages/tables/providers/providers.component.ts +++ b/src/app/pages/tables/providers/providers.component.ts @@ -14,6 +14,7 @@ export class ProvidersComponent implements OnInit { { dataPath: 'formName', translation: 'Formular Name', + sticky: true }, { dataPath: 'organisation.name',