deleteEntryProperty(entryID: EntryID, property: string) {
        const entry = this.source.e.find((e) => e.id === entryID);
        if (!entry.p[property]) return;
        entry.p[property].deleted = getTimestamp();
        this.emit("commandsExecuted");