nextspace
    Preparing search index...

    Variable EventDetailsConst

    EventDetails: React.FC<
        {
            conversationData: Conversation;
            now?: Date;
            openSectionRequest?: { id: string; nonce: number };
        },
    > = ...

    EventDetails component

    Read-only summary of an event's configuration, laid out as six collapsible cards (Event Details, Schedule, Platform & format, Assistant configuration, Moderators & presenters, Reading & resources) so an organizer can confirm everything at a glance without opening an edit form. Renders alongside EventStatus, which stays operational (live/start/edit) — this component never mutates anything.

    The conversation data object containing details about the event.

    Injectable current time, used to derive the confirmed/unconfirmed state; defaults to new Date().

    When its nonce changes, the section with the matching card id is expanded. Lets Status.tsx's readiness checklist jump to a card without owning Details' state.