setEntryProperty(entryID: EntryID, property: string, value: string) {
        const entry = this.source.e.find((e: FormatBEntry) => e.id === entryID);
        if (!entry.p[property]) {
            entry.p[property] = newRawValue(value);
        } else {