Improve attendees components

This commit is contained in:
Peter Maquiran
2021-06-15 15:45:34 +01:00
parent 57c35ca3ff
commit 68d03492f8
2 changed files with 10 additions and 22 deletions
@@ -118,7 +118,7 @@ export class AttendeePage implements OnInit {
filterSearchList(itm: EventPerson): boolean {
const result1 = this.LtaskParticipants.find((contact, index)=>{
const result = this.LtaskParticipants.concat(this.LtaskParticipantsCc).find((contact, index)=>{
if(contact.Name == itm.Name && contact.EmailAddress == itm.EmailAddress){
index = index;
@@ -127,7 +127,7 @@ export class AttendeePage implements OnInit {
});
// if to show
if(undefined != result1){
if(undefined != result){
return false;
}