From 54a4a011422e8ede3440d0ce1a0adf2527b93c19 Mon Sep 17 00:00:00 2001 From: andrej romanov <50377758+auumgn@users.noreply.github.com> Date: Wed, 12 Jun 2024 18:07:42 +0300 Subject: [PATCH] update list of contact roles --- .../consortium/add-consortium-member.component.ts | 14 ++++++++------ .../app/home/contact/contact-update.component.ts | 14 ++++++++------ 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/ui/src/app/home/consortium/add-consortium-member.component.ts b/ui/src/app/home/consortium/add-consortium-member.component.ts index c50ddb44b..6205a20f1 100644 --- a/ui/src/app/home/consortium/add-consortium-member.component.ts +++ b/ui/src/app/home/consortium/add-consortium-member.component.ts @@ -46,12 +46,14 @@ export class AddConsortiumMemberComponent implements OnInit { }) rolesData = [ - { id: 1, selected: false, name: 'Main relationship contact' }, - { id: 2, selected: false, name: 'Voting contact' }, - { id: 3, selected: false, name: 'Technical contact' }, - { id: 4, selected: false, name: 'Invoice contact' }, - { id: 5, selected: false, name: 'Comms contact' }, - { id: 6, selected: false, name: 'Product contact' }, + { id: 1, selected: false, name: 'Agreement signatory (OFFICIAL)' }, + { id: 2, selected: false, name: 'Main relationship contact (OFFICIAL)' }, + { id: 3, selected: false, name: 'Voting contact' }, + { id: 4, selected: false, name: 'Technical contact' }, + { id: 5, selected: false, name: 'Invoice contact' }, + { id: 6, selected: false, name: 'Comms contact' }, + { id: 7, selected: false, name: 'Product contact' }, + { id: 8, selected: false, name: 'Other contact' }, ] constructor( diff --git a/ui/src/app/home/contact/contact-update.component.ts b/ui/src/app/home/contact/contact-update.component.ts index f9f24d405..fe98f1f7d 100644 --- a/ui/src/app/home/contact/contact-update.component.ts +++ b/ui/src/app/home/contact/contact-update.component.ts @@ -42,12 +42,14 @@ export class ContactUpdateComponent implements OnInit, OnDestroy { faTrashAlt = faTrashAlt rolesData = [ - new SFMemberContactRole(1, false, 'Main relationship contact'), - new SFMemberContactRole(2, false, 'Voting contact'), - new SFMemberContactRole(3, false, 'Technical contact'), - new SFMemberContactRole(4, false, 'Invoice contact'), - new SFMemberContactRole(5, false, 'Comms contact'), - new SFMemberContactRole(6, false, 'Product contact'), + new SFMemberContactRole(1, false, 'Agreement signatory (OFFICIAL)'), + new SFMemberContactRole(2, false, 'Main relationship contact (OFFICIAL)'), + new SFMemberContactRole(3, false, 'Voting contact'), + new SFMemberContactRole(4, false, 'Technical contact'), + new SFMemberContactRole(5, false, 'Invoice contact'), + new SFMemberContactRole(6, false, 'Comms contact'), + new SFMemberContactRole(7, false, 'Product contact'), + new SFMemberContactRole(8, false, 'Other contact'), ] validateContactRoles: ValidatorFn = (control: AbstractControl): ValidationErrors | null => {