Add new component in agenda

This commit is contained in:
Peter Maquiran
2021-03-25 10:50:58 +01:00
parent 35102b380d
commit 9b71c33c7b
7 changed files with 58 additions and 28 deletions
+6 -2
View File
@@ -336,6 +336,8 @@
[selectedDate]="eventSelectedDate"
(onAddEvent)="openAddEventDismiss($event)"
(openAttendeesComponent)="openAttendeesComponent($event)"
[eventAttendees]="contacts"
(clearContact)="clearContact()"
></app-new-event>
<!-- Edit -->
@@ -343,7 +345,7 @@
[profile]="profile"
[selectedSegment]="segment"
[postEvent]="postEvent"
(cloneAllmobileComponent)="cloneAllmobileComponent($event)"
(cloneAllmobileComponent)="cloneAllmobileComponent()"
></app-edit-event>
<!-- View -->
@@ -365,7 +367,7 @@
<app-approve-event class="d-flex flex-column" *ngIf="mobileComponent.showEventToApprove" [class.transparent]="mobileComponent.transparentEventToApprove"
[serialNumber] = "eventToaprove.serialNumber"
(cloneAllmobileComponent)="viewEventDetailDismiss($event)"
(closeEventToApprove)="closeEventToApprove($event)"
(closeEventToApprove)="closeEventToApprove()"
(AproveEventEditEvent)="AproveEventEditEvent($event)"
>
@@ -375,6 +377,8 @@
class="d-flex flex-column height-100"
*ngIf="mobileComponent.showAttendees"
(openAttendeeModal)="openAttendeeModal()"
[eventAttendees]="contacts"
(openAddEvent)="openAddEvent($event)"
>
</app-attendees>