mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
Improve attendees components
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user