Wagtail client-side components
    Preparing search index...
    interface LoadDataOptions {
        focusedCommentId?: number;
        skipRemoved?: boolean;
    }
    Index

    Properties

    focusedCommentId?: number

    The remote ID of the comment to focus initially (if any).

    skipRemoved?: boolean

    Whether to skip deleted and resolved comments.

    On initial load, this should be set to false to account for comments that the user tried to delete or resolve but haven't been processed (e.g. because the form was not valid when it was submitted).

    On subsequent loads, this should be set to true if the comments have been processed (e.g. via autosave, which guarantees that the new data only comes back when the server has processed the previous changes).