Wagtail client-side components
    Preparing search index...
    interface CommentReply {
        author: Author | null;
        date: number;
        deleted: boolean;
        localId: number;
        mode: CommentReplyMode;
        newText: string;
        originalText: string;
        remoteId: number | null;
        text: string;
    }
    Index

    Properties

    author: Author | null
    date: number
    deleted: boolean
    localId: number
    newText: string
    originalText: string
    remoteId: number | null
    text: string

    There are three variables used for text text is the canonical text, that will be output to the form newText stores the edited version of the text until it is saved originalText stores the text upon reply creation, and is used to check whether existing replies have been edited