This commit is contained in:
tiago.kayaya
2021-09-30 08:44:12 +01:00
6 changed files with 23 additions and 19 deletions
@@ -8,7 +8,7 @@
<ion-header>
<div class="title-content">
<div class="middle">
<ion-label class="title">Editar evento por aprovar</ion-label>
<ion-label class="title">Editar evento por aprovar::.</ion-label>
</div>
</div>
</ion-header>
@@ -330,28 +330,26 @@ export class EditEventToApproveComponent implements OnInit {
}
}
setIntervenient(data){
setIntervenient(data = []) {
this.taskParticipants = data;
this.postEvent.Attendees = data;
}
setIntervenientCC(data) {
setIntervenientCC(data = []) {
this.taskParticipantsCc = data;
}
addParticipants(){
addParticipants() {
this.adding = 'intervenient'
this.openAttendees();
}
addParticipantsCC(){
addParticipantsCC() {
this.adding = 'CC'
this.openAttendees();
}
dynamicSetIntervenient({taskParticipants, taskParticipantsCc}){
dynamicSetIntervenient({taskParticipants, taskParticipantsCc}) {
this.taskParticipants = taskParticipants;
this.taskParticipantsCc = taskParticipantsCc;
}
@@ -367,7 +365,7 @@ export class EditEventToApproveComponent implements OnInit {
this.loadedAttachments = result
console.log('this.loadedAttachments', this.loadedAttachments, result)
// console.log('this.loadedAttachments', this.loadedAttachments, result)
}
deleteAttachment(attachment: Attachment, index) {