This commit is contained in:
Peter Maquiran
2023-08-22 17:50:18 +01:00
parent 977aed8862
commit a06bc4a409
3 changed files with 22 additions and 18 deletions
@@ -143,12 +143,14 @@ export class DocumentSetUpMeetingPage implements OnInit {
}
if(this.taskParticipants.length == 0) {
this.taskParticipants = [{
EmailAddress: SessionStore.user.Email,
IsRequired: true,
Name: SessionStore.user.FullName,
UserType: "GD"
}]
this.taskParticipants = [
// {
// EmailAddress: SessionStore.user.Email,
// IsRequired: true,
// Name: SessionStore.user.FullName,
// UserType: "GD"
// }
]
}
this.changeAgenda()
@@ -154,12 +154,14 @@ export class BookMeetingModalPage implements OnInit {
}
if (this.taskParticipants.length == 0) {
this.taskParticipants = [{
EmailAddress: SessionStore.user.Email,
IsRequired: true,
Name: SessionStore.user.FullName,
UserType: "GD"
}]
this.taskParticipants = [
// {
// EmailAddress: SessionStore.user.Email,
// IsRequired: true,
// Name: SessionStore.user.FullName,
// UserType: "GD"
// }
]
}
this.changeAgenda();