4810 display participants in the right drawer of the calendar event (#4896)
Closes #4810 - Introduces a new component `ExpandableList` which uses intersection observers to display the maximum number of elements possible
This commit is contained in:
@ -171,7 +171,7 @@ export class CalendarEventObjectMetadata extends BaseObjectMetadata {
|
||||
calendarChannelEventAssociations: CalendarChannelEventAssociationObjectMetadata[];
|
||||
|
||||
@FieldMetadata({
|
||||
standardId: calendarEventStandardFieldIds.eventParticipants,
|
||||
standardId: calendarEventStandardFieldIds.calendarEventParticipants,
|
||||
type: FieldMetadataType.RELATION,
|
||||
label: 'Event Participants',
|
||||
description: 'Event Participants',
|
||||
@ -182,5 +182,5 @@ export class CalendarEventObjectMetadata extends BaseObjectMetadata {
|
||||
inverseSideTarget: () => CalendarEventParticipantObjectMetadata,
|
||||
onDelete: RelationOnDeleteAction.CASCADE,
|
||||
})
|
||||
eventParticipants: CalendarEventParticipantObjectMetadata[];
|
||||
calendarEventParticipants: CalendarEventParticipantObjectMetadata[];
|
||||
}
|
||||
|
||||
@ -8,7 +8,6 @@ export type CalendarEvent = Omit<
|
||||
| 'updatedAt'
|
||||
| 'calendarChannelEventAssociations'
|
||||
| 'calendarEventParticipants'
|
||||
| 'eventParticipants'
|
||||
| 'conferenceLink'
|
||||
> & {
|
||||
conferenceLinkLabel: string;
|
||||
|
||||
Reference in New Issue
Block a user