This commit is contained in:
Peter Maquiran
2021-05-28 16:39:03 +01:00
parent f709e6f541
commit 1b3cce6215
9 changed files with 12 additions and 2 deletions
@@ -133,6 +133,7 @@
</app-empty-container> </app-empty-container>
<app-attendee-modal <app-attendee-modal
*ngIf="showAttendees" *ngIf="showAttendees"
[footer]="false"
class="d-flex flex-column height-100" class="d-flex flex-column height-100"
[adding]="adding" [adding]="adding"
[taskParticipants]="taskParticipants" [taskParticipants]="taskParticipants"
+1
View File
@@ -71,6 +71,7 @@
<div class="aside-righ flex-grow-1"> <div class="aside-righ flex-grow-1">
<app-attendee-modal class=" d-flex flex-column height-100" <app-attendee-modal class=" d-flex flex-column height-100"
[footer]="false"
*ngIf="showAttendees" *ngIf="showAttendees"
[taskParticipants]="taskParticipants" [taskParticipants]="taskParticipants"
[taskParticipantsCc]="taskParticipantsCc" [taskParticipantsCc]="taskParticipantsCc"
+1
View File
@@ -290,6 +290,7 @@
</app-approve-event> </app-approve-event>
<app-attendee-modal <app-attendee-modal
[footer]="true"
class="d-flex flex-column height-100" class="d-flex flex-column height-100"
*ngIf="mobileComponent.showAttendees" *ngIf="mobileComponent.showAttendees"
(closeComponent)="GoBackEditOrAdd()" (closeComponent)="GoBackEditOrAdd()"
@@ -219,9 +219,11 @@
<app-attendee-modal class="aside-right flex-column height-100 d-none d-md-flex pt-10" <app-attendee-modal class="aside-right flex-column height-100 d-none d-md-flex pt-10"
*ngIf="showAttendees" *ngIf="showAttendees"
[footer]="false"
[taskParticipants]="taskParticipants" [taskParticipants]="taskParticipants"
[taskParticipantsCc]="taskParticipantsCc" [taskParticipantsCc]="taskParticipantsCc"
[adding]="adding" [adding]="adding"
[footer]="false"
(dynamicSetIntervenient)="dynamicSetIntervenient($event)" (dynamicSetIntervenient)="dynamicSetIntervenient($event)"
></app-attendee-modal> ></app-attendee-modal>
@@ -190,6 +190,7 @@
<div class="aside-righ flex-grow-1"> <div class="aside-righ flex-grow-1">
<app-attendee-modal class=" d-flex flex-column height-100" <app-attendee-modal class=" d-flex flex-column height-100"
*ngIf="showAttendees" *ngIf="showAttendees"
[footer]="false"
[taskParticipants]="taskParticipants" [taskParticipants]="taskParticipants"
[taskParticipantsCc]="taskParticipantsCc" [taskParticipantsCc]="taskParticipantsCc"
[adding]="adding" [adding]="adding"
@@ -140,6 +140,7 @@
*ngIf="showAttendees" *ngIf="showAttendees"
class="d-flex flex-column height-100 hide-footer" class="d-flex flex-column height-100 hide-footer"
[adding]="adding" [adding]="adding"
[footer]="false"
[taskParticipants]="taskParticipants" [taskParticipants]="taskParticipants"
[taskParticipantsCc]="taskParticipantsCc" [taskParticipantsCc]="taskParticipantsCc"
(closeComponent)="closeComponent()" (closeComponent)="closeComponent()"
@@ -70,8 +70,8 @@
</ion-content> </ion-content>
<!-- Hide footer in gabinete-digital --> <!-- Hide footer in gabinete-digital -->
<ion-footer class="ion-no-border" *ngIf="currentPath != '/home/gabinete-digital' "> <ion-footer class="ion-no-border" *ngIf="footer" >
<ion-toolbar *ngIf="currentPath != '/home/events'" class="width-100 d-flex justify-space-between px-20"> <ion-toolbar class="width-100 d-flex justify-space-between px-20">
<ion-buttons slot="start"> <ion-buttons slot="start">
<ion-button class="btn-cancel" fill="clear" color="#061b52" (click)="close()"> <ion-button class="btn-cancel" fill="clear" color="#061b52" (click)="close()">
<ion-label>Cancelar</ion-label> <ion-label>Cancelar</ion-label>
@@ -26,6 +26,8 @@ export class AttendeeModalPage implements OnInit {
@Input() taskParticipants:EventPerson[] = []; @Input() taskParticipants:EventPerson[] = [];
@Input() taskParticipantsCc:EventPerson[] = []; @Input() taskParticipantsCc:EventPerson[] = [];
@Input() footer: boolean;
LtaskParticipants: EventPerson[] = []; LtaskParticipants: EventPerson[] = [];
LtaskParticipantsCc: EventPerson[] = []; LtaskParticipantsCc: EventPerson[] = [];
@@ -231,6 +231,7 @@
[taskParticipants]="taskParticipants" [taskParticipants]="taskParticipants"
[taskParticipantsCc]="taskParticipantsCc" [taskParticipantsCc]="taskParticipantsCc"
[adding]="adding" [adding]="adding"
[footer]="false"
(dynamicSetIntervenient)="dynamicSetIntervenient($event)" (dynamicSetIntervenient)="dynamicSetIntervenient($event)"
></app-attendee-modal> ></app-attendee-modal>